jeydipak valeriedaash commited on
Commit
8e90f23
β€’
1 Parent(s): 62bf081

Update app.py (#2)

Browse files

- Update app.py (e09d10536e2c2155e5284263f02d5a29463e8518)


Co-authored-by: Valeriia Dashieva <valeriedaash@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +32 -26
app.py CHANGED
@@ -1,26 +1,32 @@
1
- import streamlit as st
2
-
3
-
4
- st.markdown("""
5
- <style>
6
- section[data-testid="stSidebar"][aria-expanded="true"]{
7
- display: none;
8
- }
9
- </style>
10
- """, unsafe_allow_html=True)
11
-
12
-
13
-
14
- st.title('πŸ“ & βš‘πŸ’¨πŸƒπŸͺ«πŸ’‘')
15
-
16
-
17
-
18
- st.write('choose your option')
19
-
20
-
21
-
22
- st.page_link("pages/task1.py", label="Kinopoisk", icon='πŸŽ₯')
23
- st.page_link("pages/toxicapp.py", label="Personality", icon='☠️')
24
- st.page_link("pages/task3.py", label="GPT", icon='πŸ“²')
25
-
26
- st.header(f'''made by: Alexey Kamaev & Marina Kochetova''')
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ st.markdown("""
5
+ <style>
6
+ section[data-testid="stSidebar"][aria-expanded="true"]{
7
+ display: none;
8
+ }
9
+ </style>
10
+ """, unsafe_allow_html=True)
11
+
12
+
13
+
14
+ st.title('πŸ“ & βš‘πŸ’¨πŸƒπŸͺ«πŸ’‘')
15
+ st.title(AI-Apps for NLP tasks)
16
+ st.markdown(
17
+ "Here you can",
18
+ "πŸŽ₯ Define sentiment of film review",
19
+ "☠️ Access message toxicity",
20
+ "πŸ“² Generate some texts using your prompt"
21
+ )
22
+
23
+
24
+ st.write('Choose app below')
25
+
26
+
27
+
28
+ st.page_link("pages/task1.py", label="Film review sentiment", icon='πŸŽ₯')
29
+ st.page_link("pages/toxicapp.py", label="Message toxicity", icon='☠️')
30
+ st.page_link("pages/task3.py", label="Text generation", icon='πŸ“²')
31
+
32
+ st.subheader(f'''made by: Alexey Kamaev & Marina Kochetova & Valerie Dashieva''')