nlp_project / app.py
jeydipak's picture
Update app.py
1d67df8 verified
raw
history blame
778 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.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''')