Dave-A commited on
Commit
f0e3441
·
1 Parent(s): 4ff3ae2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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":"My first ML app","page_icon":":smiley:","layout":"centered"}
11
  st.set_page_config(**PAGE_CONFIG)
12
- st.title("My first ML app")
13
- st.subheader("Here is my awesome learning result")
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)