nlp_gpt_proj / app.py
cdxxi's picture
initial commit
1867879
import pandas as pd
import matplotlib.pyplot as plt
import streamlit as st
st.markdown(
"<h1 style='text-align: center;'>GPT Team project</h1>",
unsafe_allow_html=True
)
st.markdown(
"""
<style>
button[title^=Exit]+div [data-testid=stImage]{
test-align: center;
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
</style>
""", unsafe_allow_html=True
)
col1, col2, col3 = st.columns([1, 2, 1]) # Центральная колонка шире остальных
with col2:
st.image('images/76320aa1c81ec116b3fec0212d95ed4c.png', width=500)
st.markdown("---")
st.markdown("""
**Авторы:** [Михаил Бутин](https://github.com/allspicepaege), [Галина Горяинова](https://github.com/ratOfSteel), [Анатолий Яковлев](https://github.com/cdxxi)
**Описание:**
- **Главная страница**: Общая информация и навигация 🌏
- **Первая страница**: Классификация отзыва на рестораны 🍷
- **Вторая страница**: Бредогенератор 🤪
- **Третья страница**: Классификация тематики новостей из телеграм каналов 📰 [TGBOT](https://t.me/nlp_rubert_tiny_bot)
""")