Spaces:
Sleeping
Sleeping
Update pages/Entorno de Ejecución.py
Browse files
pages/Entorno de Ejecución.py
CHANGED
|
@@ -24,7 +24,7 @@ st.set_page_config(
|
|
| 24 |
|
| 25 |
st.sidebar.write("contact@patacotron.tech")
|
| 26 |
already_excuted = False
|
| 27 |
-
cnn, vit, zero_shot,
|
| 28 |
|
| 29 |
def predict(_model_list, _weights, _img):
|
| 30 |
y_gorrito = 0
|
|
@@ -299,11 +299,5 @@ with zero_shot:
|
|
| 299 |
else:
|
| 300 |
st.write("Asegúrate de haber subido correctamente la imagen.")
|
| 301 |
|
| 302 |
-
with
|
| 303 |
st.write('Próximamente')
|
| 304 |
-
with gan:
|
| 305 |
-
st.write('Próximamente')
|
| 306 |
-
with svm:
|
| 307 |
-
st.write('Próximamente')
|
| 308 |
-
with iforest:
|
| 309 |
-
st.write('Próximamente')
|
|
|
|
| 24 |
|
| 25 |
st.sidebar.write("contact@patacotron.tech")
|
| 26 |
already_excuted = False
|
| 27 |
+
cnn, vit, zero_shot, classic_ml = st.tabs(["CNN", "ViT", "Zero-Shot", "Machine Learning Clásico"])
|
| 28 |
|
| 29 |
def predict(_model_list, _weights, _img):
|
| 30 |
y_gorrito = 0
|
|
|
|
| 299 |
else:
|
| 300 |
st.write("Asegúrate de haber subido correctamente la imagen.")
|
| 301 |
|
| 302 |
+
with classic_ml:
|
| 303 |
st.write('Próximamente')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|