Spaces:
Runtime error
Runtime error
espejelomar
commited on
Commit
•
ac41a77
1
Parent(s):
f2beadf
agregar texto
Browse files
app.py
CHANGED
@@ -6,13 +6,11 @@ from huggingface_hub import from_pretrained_keras
|
|
6 |
|
7 |
st.header("Segmentación de dientes con rayos X")
|
8 |
|
|
|
|
|
9 |
st.markdown(
|
10 |
"""
|
11 |
-
|
12 |
-
de dientes en rayos X. Se utila un modelo de Keras importado con la función
|
13 |
-
`huggingface_hub.from_pretrained_keras`. Recuerda que el Hub de Hugging Face está integrado
|
14 |
-
con muchas librerías como Keras, scikit-learn, fastai y otras.
|
15 |
-
El modelo fue creado por [SerdarHelli](https://huggingface.co/SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net).
|
16 |
"""
|
17 |
)
|
18 |
|
@@ -102,4 +100,6 @@ if archivo_imagen is not None:
|
|
102 |
if output is not None:
|
103 |
st.subheader("Segmentación:")
|
104 |
st.write(output.shape)
|
105 |
-
st.image(output, width=850)
|
|
|
|
|
|
6 |
|
7 |
st.header("Segmentación de dientes con rayos X")
|
8 |
|
9 |
+
st.subheader("Este es una iteración para bucar mejorar el demo")
|
10 |
+
|
11 |
st.markdown(
|
12 |
"""
|
13 |
+
Este es un demo prueba para la clase de Platzi
|
|
|
|
|
|
|
|
|
14 |
"""
|
15 |
)
|
16 |
|
|
|
100 |
if output is not None:
|
101 |
st.subheader("Segmentación:")
|
102 |
st.write(output.shape)
|
103 |
+
st.image(output, width=850)
|
104 |
+
|
105 |
+
st.markdown("Gracias por usar nuestro demo! Nos vemos pronto")
|