Franco Medina commited on
Commit
9eabc33
1 Parent(s): dd9ee36

changes in app

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -5,14 +5,11 @@ import cv2
5
  from huggingface_hub import from_pretrained_keras
6
 
7
  st.header("Segmentación de dientes con rayos X")
 
8
 
9
  st.markdown(
10
  """
11
- Hola estudiantes de Platzi 🚀. Este modelo usa UNet para segmentar imágenes
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 +99,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)
 
 
 
5
  from huggingface_hub import from_pretrained_keras
6
 
7
  st.header("Segmentación de dientes con rayos X")
8
+ st.subheader("Iteration to improve demo")
9
 
10
  st.markdown(
11
  """
12
+ Demo for Platzi class
 
 
 
 
13
  """
14
  )
15
 
 
99
  if output is not None:
100
  st.subheader("Segmentación:")
101
  st.write(output.shape)
102
+ st.image(output, width=850)
103
+
104
+ st.markdown("Thanks for use our demo!")