Spaces:
Running
Running
File size: 933 Bytes
216bd01 5ec69a9 17bb40f c3c3f2d 17bb40f 98abc61 17bb40f 8cc67da 98abc61 8cc67da 0b039a0 761cd21 |
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 |
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'
}
)
with st.sidebar:
st.write("contact@patacotron.tech")
st.title("Resultados")
st.markdown(
f"""
### Se usaron 4 carpetas distintas que suman 900 archivos no vistos durante entrenamiento.
""")
cnn, vit, ml = st.tabs(["CNN", "Transformers Visuales y Zero-Shot", "Machine Learning Clásico"])
with cnn:
st.image('/home/user/app/stats/cnn_stats.png')
with vit:
st.image('/home/user/app/stats/vit_stats.png')
with ml:
st.image('/home/user/app/stats/ml_stats.png') |