Spaces:
Sleeping
Sleeping
samuel2424
commited on
Commit
·
dc7ca93
1
Parent(s):
8497b67
final
Browse files
app.py
CHANGED
@@ -45,12 +45,12 @@ example_list = [["examples/" + example] for example in os.listdir("examples")]
|
|
45 |
|
46 |
# Gradio interface
|
47 |
title = "Clasificador de clima a partir de imágenes (Finetuneado)"
|
48 |
-
description = "Clasificador de imágenes"
|
49 |
|
50 |
demo = gr.Interface(fn=predict,
|
51 |
inputs=gr.Image(type="pil"),
|
52 |
-
outputs=[gr.Label(num_top_classes=1, label="
|
53 |
-
gr.Number(label="
|
54 |
examples=example_list,
|
55 |
title=title,
|
56 |
description=description)
|
|
|
45 |
|
46 |
# Gradio interface
|
47 |
title = "Clasificador de clima a partir de imágenes (Finetuneado)"
|
48 |
+
description = "Clasificador de imágenes https://docs.google.com/presentation/d/1V2R1CIK8Iav3Hf8RIoWiypo6xGJg4l_w2TCY06QCoLM/edit?usp=sharing"
|
49 |
|
50 |
demo = gr.Interface(fn=predict,
|
51 |
inputs=gr.Image(type="pil"),
|
52 |
+
outputs=[gr.Label(num_top_classes=1, label="Predicciones"),
|
53 |
+
gr.Number(label="Tiempo de Predicción(s)")],
|
54 |
examples=example_list,
|
55 |
title=title,
|
56 |
description=description)
|