Spaces:
Sleeping
Sleeping
import streamlit as st | |
# Заголовок страницы | |
st.title("Статистика моделей для классификации отзыва 'Позитивный/Негативный'") | |
# Создание отдельных expander для каждой модели | |
with st.expander("Логистическая Регрессия", expanded=False): | |
st.image("./images/ROC-AUC.png", caption="ROC-AUC", use_container_width=True) | |
with st.expander("LSTM", expanded=False): | |
st.image("./images/LSTM.png", caption="LSTM", use_container_width=True) | |
with st.expander("RuBERT", expanded=False): | |
st.image("./images/RuBert.png", caption="RuBert", use_container_width=True) | |