Spaces:
Runtime error
Runtime error
Commit
·
79cdd00
1
Parent(s):
dc8d98a
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,3 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
import streamlit as st
|
3 |
import base64
|
4 |
import streamlit as st
|
5 |
import plotly.express as px
|
@@ -37,12 +35,12 @@ padding: 5% 5% 5% 10%;
|
|
37 |
border-radius: 5px;
|
38 |
}}
|
39 |
|
|
|
|
|
40 |
</style>
|
41 |
"""
|
42 |
st.markdown(page_bg_img, unsafe_allow_html=True)
|
43 |
|
44 |
-
|
45 |
-
|
46 |
col1, col2, col3 = st.columns([1,8,1])
|
47 |
#col1, col2 = st.columns(2)
|
48 |
|
@@ -69,4 +67,14 @@ with col2:
|
|
69 |
st.subheader('**:violet[:cat: Anna F.]**')
|
70 |
st.subheader('**:violet[:cat: Viktoria K.]**')
|
71 |
st.subheader('**:violet[:cat: Ivan N.]**')
|
72 |
-
st.subheader('**:violet[:cat: Ilvir Kh.]**')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import base64
|
2 |
import streamlit as st
|
3 |
import plotly.express as px
|
|
|
35 |
border-radius: 5px;
|
36 |
}}
|
37 |
|
38 |
+
|
39 |
+
|
40 |
</style>
|
41 |
"""
|
42 |
st.markdown(page_bg_img, unsafe_allow_html=True)
|
43 |
|
|
|
|
|
44 |
col1, col2, col3 = st.columns([1,8,1])
|
45 |
#col1, col2 = st.columns(2)
|
46 |
|
|
|
67 |
st.subheader('**:violet[:cat: Anna F.]**')
|
68 |
st.subheader('**:violet[:cat: Viktoria K.]**')
|
69 |
st.subheader('**:violet[:cat: Ivan N.]**')
|
70 |
+
st.subheader('**:violet[:cat: Ilvir Kh.]**')
|
71 |
+
|
72 |
+
# Настройка боковой панели
|
73 |
+
st.sidebar.title("About the project")
|
74 |
+
st.sidebar.info(
|
75 |
+
"""
|
76 |
+
Natural Language Processing
|
77 |
+
"""
|
78 |
+
)
|
79 |
+
st.sidebar.info("Feel free to collaborate and comment on the work. The github link can be found "
|
80 |
+
"[here](https://github.com/vasevooo/NLP_project).")
|