Spaces:
Running
Running
Update pages/Resultados.py
Browse files- pages/Resultados.py +28 -11
pages/Resultados.py
CHANGED
@@ -14,16 +14,33 @@ statistics = 'statistics.jpg'
|
|
14 |
with st.sidebar:
|
15 |
st.write("contact@patacotron.tech")
|
16 |
|
17 |
-
|
18 |
|
19 |
-
with
|
20 |
-
st.title("Resultados")
|
21 |
-
st.markdown(
|
22 |
-
f"""
|
23 |
-
### Se usaron 4 carpetas distintas que suman +15000 archivos:
|
24 |
-
-Patacón-True/Frames: imágenes de patacones.
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
with
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
with st.sidebar:
|
15 |
st.write("contact@patacotron.tech")
|
16 |
|
17 |
+
cnn, vit, zero_shot, autoencoder, svm, iforest, gan = st.tabs(["CNN", "ViT", "Zero-Shot", "Autoencoder", "OC-SVM", 'iForest', 'GAN'])
|
18 |
|
19 |
+
with cnn:
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
col_a, col_b = st.columns(2)
|
22 |
+
|
23 |
+
with col_a:
|
24 |
+
st.title("Resultados")
|
25 |
+
st.markdown(
|
26 |
+
f"""
|
27 |
+
### Se usaron 4 carpetas distintas que suman +15000 archivos:
|
28 |
+
-Patacón-True/Frames: imágenes de patacones.
|
29 |
+
|
30 |
+
-Bias/Almost-Patacón: objetos similares a patacones o con características que puedan sesgar al modelo.
|
31 |
+
""")
|
32 |
+
with col_b:
|
33 |
+
st.image(statistics)
|
34 |
+
|
35 |
+
with vit:
|
36 |
+
st.write('Próximamente')
|
37 |
+
with zero_shot:
|
38 |
+
st.write('Próximamente')
|
39 |
+
with autoencoder:
|
40 |
+
st.write('Próximamente')
|
41 |
+
with gan:
|
42 |
+
st.write('Próximamente')
|
43 |
+
with svm:
|
44 |
+
st.write('Próximamente')
|
45 |
+
with iforest:
|
46 |
+
st.write('Próximamente')
|