File size: 1,187 Bytes
216bd01
 
 
 
 
 
 
 
 
 
 
 
5ec69a9
 
 
 
0b039a0
c3c3f2d
98abc61
5ec69a9
98abc61
 
 
 
 
 
0b039a0
98abc61
 
 
 
 
 
 
 
 
0b039a0
98abc61
0b039a0
98abc61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import streamlit as st

st.set_page_config(
    page_title = 'Patacotrón',
    layout= 'wide',
    initial_sidebar_state = 'collapsed',
    menu_items = {
        "About" : 'Proyecto ideado para la investigación de "Clasificación de imágenes de una sola clase con algortimos de Inteligencia Artificial".',
        "Report a Bug" : 'https://docs.google.com/forms/d/e/1FAIpQLScH0ZxAV8aSqs7TPYi86u0nkxvQG3iuHCStWNB-BoQnSW2V0g/viewform?usp=sf_link'
    }
)
statistics = 'statistics.jpg'

with st.sidebar:
    st.write("[email protected]")

cnn, vit, zs, ml = st.tabs(["CNN", "ViT", "Zero-Shot", "Machine Learning Clásico"])

with cnn:
    
    col_a, col_b = st.columns(2)
    
    with col_a:
        st.title("Resultados")
        st.markdown(
        f"""
        ### Se usaron 4 carpetas distintas que suman 900 archivos: 
        -Patacón-True/Frames: imágenes de patacones.
        
        -Bias/Almost-Patacón: objetos similares a patacones o con características que puedan sesgar al modelo.
        """)
    with col_b:
        st.image(statistics)

with vit:
    st.write('Próximamente')
with zs:
    st.write('Próximamente')
with ml:
    st.write('Próximamente')