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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -8,6 +8,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}')
 
 
8
 
9
  if text is not None:
10
  candidate_labels = ['lifestyle', 'technology', 'entertainment', 'news']
11
+ res = classifier(text, candidate_labels)
12
 
13
+ for index, name in enumerate(res['labels']):
14
+ st.text(f"{name} : {round(res['scores'][index], 3) * 100}%")