joelmateo14 commited on
Commit
0c6b74a
·
1 Parent(s): b5c4b5f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -14,11 +14,11 @@ labels = learner.dls.vocab
14
  def predict(text):
15
  pred,pred_idx,probs = learner.predict(text)
16
  if (pred=="0"):
17
- return neg
18
  elif (pred=="1"):
19
- return pos
20
  else:
21
- return error
22
 
23
  # Creamos la interfaz y la lanzamos.
24
  gr.Interface(fn=predict, inputs="text", outputs="label",examples=["i would not watch it again, it is amazing one of my favorites"]).launch()
 
14
  def predict(text):
15
  pred,pred_idx,probs = learner.predict(text)
16
  if (pred=="0"):
17
+ return "neg"
18
  elif (pred=="1"):
19
+ return "pos"
20
  else:
21
+ return "error"
22
 
23
  # Creamos la interfaz y la lanzamos.
24
  gr.Interface(fn=predict, inputs="text", outputs="label",examples=["i would not watch it again, it is amazing one of my favorites"]).launch()