File size: 1,381 Bytes
216bd01
 
 
 
 
 
 
 
 
 
 
 
5ec69a9
 
 
 
98abc61
c3c3f2d
98abc61
5ec69a9
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
41
42
43
44
45
46
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("contact@patacotron.tech")

cnn, vit, zero_shot, autoencoder, svm, iforest, gan = st.tabs(["CNN", "ViT", "Zero-Shot", "Autoencoder", "OC-SVM", 'iForest', 'GAN'])

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 +15000 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 zero_shot:
    st.write('Próximamente')
with autoencoder:
    st.write('Próximamente')
with gan:
    st.write('Próximamente')  
with svm:
    st.write('Próximamente')
with iforest:
    st.write('Próximamente')