frncscp commited on
Commit
17bb40f
·
1 Parent(s): 4a45f5a

Update pages/Resultados.py

Browse files
Files changed (1) hide show
  1. pages/Resultados.py +10 -21
pages/Resultados.py CHANGED
@@ -9,32 +9,21 @@ st.set_page_config(
9
  "Report a Bug" : 'https://docs.google.com/forms/d/e/1FAIpQLScH0ZxAV8aSqs7TPYi86u0nkxvQG3iuHCStWNB-BoQnSW2V0g/viewform?usp=sf_link'
10
  }
11
  )
12
- statistics = 'statistics.jpg'
13
 
14
  with st.sidebar:
15
  st.write("contact@patacotron.tech")
16
 
17
- cnn, vit, zs, ml = st.tabs(["CNN", "ViT", "Zero-Shot", "Machine Learning Clásico"])
 
 
 
 
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 900 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 zs:
38
- st.write('Próximamente')
39
  with ml:
40
- st.write('Próximamente')
 
9
  "Report a Bug" : 'https://docs.google.com/forms/d/e/1FAIpQLScH0ZxAV8aSqs7TPYi86u0nkxvQG3iuHCStWNB-BoQnSW2V0g/viewform?usp=sf_link'
10
  }
11
  )
 
12
 
13
  with st.sidebar:
14
  st.write("contact@patacotron.tech")
15
 
16
+ st.title("Resultados")
17
+ st.markdown(
18
+ f"""
19
+ ### Se usaron 4 carpetas distintas que suman 900 archivos no vistos durante entrenamiento.
20
+ """)
21
 
22
+ cnn, vit, ml = st.tabs(["CNN", "Transformers Visuales y Zero-Shot", "Machine Learning Clásico"])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
+ with cnn:
25
+ st.image('stats/cnn_stats.jpg')
26
  with vit:
27
+ st.image('stats/vit_stats.jpg')
 
 
28
  with ml:
29
+ st.write('stats/cML_stats.jpg')