Update app.py
Browse files
app.py
CHANGED
@@ -37,4 +37,4 @@ def predict(instancia):
|
|
37 |
predicted_class_id = logits.argmax().item()
|
38 |
return str(logits.item())
|
39 |
|
40 |
-
gr.Interface(fn=predict, inputs=
|
|
|
37 |
predicted_class_id = logits.argmax().item()
|
38 |
return str(logits.item())
|
39 |
|
40 |
+
gr.Interface(fn=predict, inputs='text', outputs='text',examples=example).launch(share=False)
|