Spaces:
Sleeping
Sleeping
Commit
·
0c6b74a
1
Parent(s):
b5c4b5f
Update app.py
Browse files
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()
|