Spaces:
Sleeping
Sleeping
Update pages/Entorno de Ejecución.py
Browse files
pages/Entorno de Ejecución.py
CHANGED
@@ -5,8 +5,6 @@ import os
|
|
5 |
|
6 |
st.set_page_config(
|
7 |
page_title = 'Patacotrón',
|
8 |
-
page_icon="🧊",
|
9 |
-
initial_sidebar_state = 'auto',
|
10 |
layout = 'wide',
|
11 |
menu_items = {
|
12 |
"About" : 'Proyecto ideado para la investigación de "Clasificación de imágenes de una sola clase con algortimos de Inteligencia Artificial".',
|
@@ -14,8 +12,7 @@ st.set_page_config(
|
|
14 |
}
|
15 |
)
|
16 |
|
17 |
-
|
18 |
-
#st.write("contact@patacotron.tech")
|
19 |
|
20 |
cnn, autoencoder, svm, iforest, gan, vit = st.tabs(["CNN", "Autoencoder", "OC-SVM", 'iForest', 'GAN', 'ViT'])
|
21 |
|
@@ -70,8 +67,6 @@ with cnn:
|
|
70 |
IMAGE_WIDTH = IMAGE_HEIGHT = 224
|
71 |
|
72 |
executed = False
|
73 |
-
|
74 |
-
st.image('patacones.gif')
|
75 |
|
76 |
with col_b:
|
77 |
|
@@ -102,6 +97,7 @@ with cnn:
|
|
102 |
|
103 |
else:
|
104 |
st.error("No se considera que haya un patacón en la imagen")
|
|
|
105 |
st.caption(f'La probabilidad de que la imagen tenga un patacón es del: {round(float(y_gorrito * 100), 2)}%')
|
106 |
st.caption('Si los resultados no fueron los esperados, por favor, [haz click aquí](https://docs.google.com/forms/d/e/1FAIpQLScH0ZxAV8aSqs7TPYi86u0nkxvQG3iuHCStWNB-BoQnSW2V0g/viewform?usp=sf_link)')
|
107 |
|
|
|
5 |
|
6 |
st.set_page_config(
|
7 |
page_title = 'Patacotrón',
|
|
|
|
|
8 |
layout = 'wide',
|
9 |
menu_items = {
|
10 |
"About" : 'Proyecto ideado para la investigación de "Clasificación de imágenes de una sola clase con algortimos de Inteligencia Artificial".',
|
|
|
12 |
}
|
13 |
)
|
14 |
|
15 |
+
st.sidebar.write("contact@patacotron.tech")
|
|
|
16 |
|
17 |
cnn, autoencoder, svm, iforest, gan, vit = st.tabs(["CNN", "Autoencoder", "OC-SVM", 'iForest', 'GAN', 'ViT'])
|
18 |
|
|
|
67 |
IMAGE_WIDTH = IMAGE_HEIGHT = 224
|
68 |
|
69 |
executed = False
|
|
|
|
|
70 |
|
71 |
with col_b:
|
72 |
|
|
|
97 |
|
98 |
else:
|
99 |
st.error("No se considera que haya un patacón en la imagen")
|
100 |
+
|
101 |
st.caption(f'La probabilidad de que la imagen tenga un patacón es del: {round(float(y_gorrito * 100), 2)}%')
|
102 |
st.caption('Si los resultados no fueron los esperados, por favor, [haz click aquí](https://docs.google.com/forms/d/e/1FAIpQLScH0ZxAV8aSqs7TPYi86u0nkxvQG3iuHCStWNB-BoQnSW2V0g/viewform?usp=sf_link)')
|
103 |
|