arkmartov commited on
Commit
2460eee
·
1 Parent(s): 30c461d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -43,8 +43,8 @@ dictionary = ['computer science', 'economics', 'Electrical Engineering and Syste
43
  'statistics']
44
  if filter(title, abstract):
45
  model, tokenizer = Model()
46
- #logits = Predict(model, tokenizer, text)
47
- #Print(logits, dictionary)
48
  st.markdown(f"{model}")
49
 
50
 
 
43
  'statistics']
44
  if filter(title, abstract):
45
  model, tokenizer = Model()
46
+ logits = Predict(model, tokenizer, text)
47
+ Print(logits, dictionary)
48
  st.markdown(f"{model}")
49
 
50