edgilr commited on
Commit
8ea15a5
1 Parent(s): 416fbb2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,6 +20,6 @@ def predict(txt):
20
  # Modelo de clasificación basados en mecanismos de atención
21
  #return classifier(txt)['label']
22
 
23
- gr.Interface(fn=predict, inputs=["text"], outputs=["text"],
24
  examples=['lovingly photographed in the manner of a golden book sprung to life , stuart little 2 manages sweetness largely without stickiness .',
25
  'the thing looks like a made-for-home-video quickie .']).launch(share=True)
 
20
  # Modelo de clasificación basados en mecanismos de atención
21
  #return classifier(txt)['label']
22
 
23
+ gr.Interface(fn=predict, inputs="text", outputs="text",
24
  examples=['lovingly photographed in the manner of a golden book sprung to life , stuart little 2 manages sweetness largely without stickiness .',
25
  'the thing looks like a made-for-home-video quickie .']).launch(share=True)