rzaytsev commited on
Commit
0811f09
1 Parent(s): 3491741

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -36,7 +36,7 @@ def predict(title, abstract):
36
  break
37
  return preds
38
 
39
- output = predict(title, abstract)
40
- st.text("Top 95% topics:")
41
- for topic, proba in output:
42
  st.text(f"{topic}: {proba*100:.0f}%")
 
36
  break
37
  return preds
38
 
39
+ output = predict(title, abstract)
40
+ st.text("Top 95% topics:")
41
+ for topic, proba in output:
42
  st.text(f"{topic}: {proba*100:.0f}%")