Maxson52 commited on
Commit
3a30484
·
1 Parent(s): c9e4e04

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -6,7 +6,8 @@ st.title("What's the category?")
6
 
7
  text = st.text_input("Enter words")
8
 
9
- candidate_labels = ['lifestyle', 'technology', 'entertainment', 'news']
10
- res = classifier("Today is a good day to have a good day", candidate_labels)
 
11
 
12
- st.markdown(f'Well here you go: {res}')
 
6
 
7
  text = st.text_input("Enter words")
8
 
9
+ if text is not None:
10
+ candidate_labels = ['lifestyle', 'technology', 'entertainment', 'news']
11
+ res = classifier("Today is a good day to have a good day", candidate_labels)
12
 
13
+ st.markdown(f'Well here you go: {res}')