Spaces:
Runtime error
Runtime error
Isabel Gwara
commited on
Commit
·
4e90df3
1
Parent(s):
0b93644
Update app.py
Browse files
app.py
CHANGED
@@ -9,20 +9,17 @@ import numpy as np
|
|
9 |
from sklearn.model_selection import train_test_split
|
10 |
from sklearn.linear_model import LogisticRegression
|
11 |
from sklearn import metrics
|
12 |
-
from os.path import exists
|
13 |
-
|
14 |
|
15 |
|
16 |
### ----------------------------- ###
|
17 |
### interface setup ###
|
18 |
### ----------------------------- ###
|
19 |
|
20 |
-
|
21 |
with open('styles.css') as f:
|
22 |
st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
|
23 |
|
24 |
st.title('Mental Health App')
|
25 |
-
st.
|
26 |
|
27 |
|
28 |
### ------------------------------ ###
|
|
|
9 |
from sklearn.model_selection import train_test_split
|
10 |
from sklearn.linear_model import LogisticRegression
|
11 |
from sklearn import metrics
|
|
|
|
|
12 |
|
13 |
|
14 |
### ----------------------------- ###
|
15 |
### interface setup ###
|
16 |
### ----------------------------- ###
|
17 |
|
|
|
18 |
with open('styles.css') as f:
|
19 |
st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
|
20 |
|
21 |
st.title('Mental Health App')
|
22 |
+
st.text('Feeling like you might need a better coping strategy? Take the quiz to get a personalized recommendation using AI.')
|
23 |
|
24 |
|
25 |
### ------------------------------ ###
|