File size: 778 Bytes
8e90f23
 
 
 
 
 
 
 
 
 
 
 
 
 
1d67df8
8e90f23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import streamlit as st


st.markdown("""
    <style>
        section[data-testid="stSidebar"][aria-expanded="true"]{
            display: none;
        }
    </style>
    """, unsafe_allow_html=True)



st.title('πŸ“ &  βš‘πŸ’¨πŸƒπŸͺ«πŸ’‘')
st.title('AI-Apps for NLP tasks')
st.markdown(
    "Here you can",
    "πŸŽ₯ Define sentiment of film review",
    "☠️ Access message toxicity",
    "πŸ“² Generate some texts using your prompt"
)


st.write('Choose app below')



st.page_link("pages/task1.py", label="Film review sentiment", icon='πŸŽ₯')
st.page_link("pages/toxicapp.py", label="Message toxicity", icon='☠️')
st.page_link("pages/task3.py", label="Text generation", icon='πŸ“²')

st.subheader(f'''made by: Alexey Kamaev & Marina Kochetova & Valerie Dashieva''')