Update app.py
Browse files
app.py
CHANGED
@@ -29,4 +29,4 @@ def predict(instancia):
|
|
29 |
predicted_class_id = logits.argmax().item()
|
30 |
return str(logits.item())
|
31 |
|
32 |
-
gr.Interface(fn=predict, inputs=
|
|
|
29 |
predicted_class_id = logits.argmax().item()
|
30 |
return str(logits.item())
|
31 |
|
32 |
+
gr.Interface(fn=predict, inputs=gr.inputs.Textbox(), outputs='text',examples=['grafo1.txt']).launch(share=False)
|