allopeap commited on
Commit
0dce8ca
·
verified ·
1 Parent(s): bd17c33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ labels = learner.dls.vocab
12
  def predict(text):
13
  output = learner.predict(text)
14
  print("Output of learner.predict:", output)
15
- if len(output) == 3:
16
  pred, _, probs = output
17
  elif len(output) == 2:
18
  pred, probs = output
 
12
  def predict(text):
13
  output = learner.predict(text)
14
  print("Output of learner.predict:", output)
15
+ if len(output) == 3:
16
  pred, _, probs = output
17
  elif len(output) == 2:
18
  pred, probs = output