Spaces:
Sleeping
Sleeping
fschwartzer
commited on
Commit
•
e4236ff
1
Parent(s):
6c607b7
Update app.py
Browse files
app.py
CHANGED
@@ -42,14 +42,14 @@ def predict(file):
|
|
42 |
input_df.to_excel(writer, index=False)
|
43 |
output.seek(0)
|
44 |
|
45 |
-
return output
|
46 |
|
47 |
iface = gr.Interface(
|
48 |
fn=predict,
|
49 |
inputs=gr.File(label="Carregue seu arquivo XLS/XLSX"),
|
50 |
outputs=gr.File(),
|
51 |
title="Vera Cruz - Avaliação em massa",
|
52 |
-
description="Faça o upload de um arquivo XLS/XLSX para previsão em massa. Download de planilha de exemplo [aqui]('teste.xlsx')."
|
53 |
)
|
54 |
|
55 |
iface.launch()
|
|
|
42 |
input_df.to_excel(writer, index=False)
|
43 |
output.seek(0)
|
44 |
|
45 |
+
return output.getvalue()
|
46 |
|
47 |
iface = gr.Interface(
|
48 |
fn=predict,
|
49 |
inputs=gr.File(label="Carregue seu arquivo XLS/XLSX"),
|
50 |
outputs=gr.File(),
|
51 |
title="Vera Cruz - Avaliação em massa",
|
52 |
+
description="Faça o upload de um arquivo XLS/XLSX para previsão em massa. Download de planilha de exemplo [aqui]('https://huggingface.co/spaces/fschwartzer/VC_MASSA/resolve/main/teste.xlsx')."
|
53 |
)
|
54 |
|
55 |
iface.launch()
|