frncscp commited on
Commit
0c60a5f
1 Parent(s): 40f25bb

Update pages/Entorno de Ejecución.py

Browse files
Files changed (1) hide show
  1. pages/Entorno de Ejecución.py +4 -1
pages/Entorno de Ejecución.py CHANGED
@@ -18,7 +18,7 @@ st.set_page_config(
18
 
19
  st.sidebar.write("contact@patacotron.tech")
20
 
21
- cnn, autoencoder, svm, iforest, gan, vit = st.tabs(["CNN", "Autoencoder", "OC-SVM", 'iForest', 'GAN', 'ViT'])
22
 
23
  with cnn:
24
 
@@ -149,6 +149,9 @@ with vit:
149
  classifier(img)
150
  else:
151
  st.write("Asegúrate de haber subido correctamente la imagen.")
 
 
 
152
 
153
 
154
 
 
18
 
19
  st.sidebar.write("contact@patacotron.tech")
20
 
21
+ cnn, autoencoder, svm, iforest, gan, vit, zero_shot= st.tabs(["CNN", "Autoencoder", "OC-SVM", 'iForest', 'GAN', 'ViT', 'Zero-Shot'])
22
 
23
  with cnn:
24
 
 
149
  classifier(img)
150
  else:
151
  st.write("Asegúrate de haber subido correctamente la imagen.")
152
+
153
+ with zero_shot:
154
+ st.write('Próximamente')
155
 
156
 
157