nlp_project / app.py
jeydipak's picture
Update app.py
0f6de28 verified
raw
history blame
613 Bytes
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.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')