Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,10 +7,10 @@ model = PassiveAggressiveClassifier(max_iter=50)
|
|
7 |
with open('tfidf.pickle', 'rb') as f:
|
8 |
tfidf = pickle.load(f)
|
9 |
|
10 |
-
PAGE_CONFIG = {"page_title":"
|
11 |
st.set_page_config(**PAGE_CONFIG)
|
12 |
-
st.title("
|
13 |
-
st.subheader("Here is
|
14 |
|
15 |
menu = ["Home","About my startup"]
|
16 |
choice = st.sidebar.selectbox('Menu',menu)
|
|
|
7 |
with open('tfidf.pickle', 'rb') as f:
|
8 |
tfidf = pickle.load(f)
|
9 |
|
10 |
+
PAGE_CONFIG = {"page_title":"The Amazing Fake News App","page_icon":":smiley:","layout":"centered"}
|
11 |
st.set_page_config(**PAGE_CONFIG)
|
12 |
+
st.title("The Amazing Fake News App")
|
13 |
+
st.subheader("Here is an awesome learning result")
|
14 |
|
15 |
menu = ["Home","About my startup"]
|
16 |
choice = st.sidebar.selectbox('Menu',menu)
|