Spaces:
Runtime error
Runtime error
Miguel Angel
commited on
Commit
路
481ab49
1
Parent(s):
e985b9e
main | Adding mardowns simple on model
Browse files
app.py
CHANGED
@@ -4,18 +4,17 @@ import numpy as np
|
|
4 |
import cv2
|
5 |
from huggingface_hub import from_pretrained_keras
|
6 |
|
7 |
-
st.header("
|
|
|
|
|
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 |
|
|
|
19 |
# Seleccionamos y cargamos el modelo
|
20 |
model_id = "SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net"
|
21 |
model = from_pretrained_keras(model_id)
|
|
|
4 |
import cv2
|
5 |
from huggingface_hub import from_pretrained_keras
|
6 |
|
7 |
+
st.header("X Rays Segmentation")
|
8 |
+
|
9 |
+
st.subheader("This is an iteration for improving the model")
|
10 |
|
11 |
st.markdown(
|
12 |
"""
|
13 |
+
This is a test demo for platzy class
|
|
|
|
|
|
|
|
|
14 |
"""
|
15 |
)
|
16 |
|
17 |
+
|
18 |
# Seleccionamos y cargamos el modelo
|
19 |
model_id = "SerdarHelli/Segmentation-of-Teeth-in-Panoramic-X-ray-Image-Using-U-Net"
|
20 |
model = from_pretrained_keras(model_id)
|