Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,12 @@ from bert_strim import bert_model_page
|
|
11 |
|
12 |
|
13 |
def app_description_page():
|
14 |
-
st.
|
15 |
-
st.
|
|
|
|
|
|
|
|
|
16 |
|
17 |
def model_selection_page():
|
18 |
st.sidebar.title("Model Selection")
|
|
|
11 |
|
12 |
|
13 |
def app_description_page():
|
14 |
+
st.markdown("<h1 style='text-align: center;'>Welcome to My App!</h1>", unsafe_allow_html=True)
|
15 |
+
st.markdown("<h3 style='font-size: 18px;'>This is a Streamlit application where you can explore four different models.</h3>", unsafe_allow_html=True)
|
16 |
+
st.markdown("<h3 style='font-size: 18px;'>About the project:</h3>", unsafe_allow_html=True)
|
17 |
+
st.markdown("<h3 style='font-size: 18px;'>The task is to train 3 different models on a dataset that contains reviews about the clinic.</h3>", unsafe_allow_html=True)
|
18 |
+
st.markdown("<h3 style='font-size: 18px;'>You can write text and the model will classify it as “Negative” or “Positive”</h3>", unsafe_allow_html=True)
|
19 |
+
|
20 |
|
21 |
def model_selection_page():
|
22 |
st.sidebar.title("Model Selection")
|