Spaces:
Sleeping
Sleeping
starbotica
commited on
Commit
·
d698815
1
Parent(s):
9aff346
Update app.py
Browse files
app.py
CHANGED
@@ -9,29 +9,18 @@ def predict(img):
|
|
9 |
img = PILImage.create(img)
|
10 |
pred,pred_idx,probs = learn.predict(img)
|
11 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
12 |
-
# cambiar título
|
13 |
-
title = "Hiposfagma vs Pterigium"
|
14 |
|
15 |
-
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
<a href="https://huggingface.co/starbotica"><img alt="StarBótica" src="starbotica-logo cuadrado.png"></a>
|
23 |
-
<p>
|
24 |
-
A petición de los Dres. Federico Alonso Aliste y Jonatan Amián Cordero, hemos creado un clasificador de imágenes simple con propósito demostrativo.
|
25 |
-
Exención de responsabilidad: Este espacio no puede ser utilizado como herramienta de diagnóstico.
|
26 |
-
</p>
|
27 |
-
""")
|
28 |
-
|
29 |
-
description = """
|
30 |
-
|
31 |
"""
|
32 |
-
|
33 |
-
|
34 |
|
35 |
demo.launch()
|
36 |
|
37 |
-
|
|
|
9 |
img = PILImage.create(img)
|
10 |
pred,pred_idx,probs = learn.predict(img)
|
11 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
|
|
|
|
12 |
|
13 |
+
title = "Hiposfagma vs Pterigium"
|
14 |
|
15 |
+
description = """
|
16 |
+
# Demostración creada por StarBótica
|
17 |
+
## Academia de Nuevas Tecnologías en Sevilla
|
18 |
+
A petición de los Dres. Federico Alonso Aliste y Jonatan Amián Cordero, hemos creado un clasificador de imágenes simple con propósito demostrativo.
|
19 |
+
Exención de responsabilidad: Este espacio no puede ser utilizado como herramienta de diagnóstico.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
"""
|
21 |
+
interpretation='default'
|
22 |
+
enable_queue=True
|
23 |
|
24 |
demo.launch()
|
25 |
|
26 |
+
gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label(num_top_classes=2),title=title,description=description,interpretation=interpretation,enable_queue=enable_queue).launch()
|