Asib27 commited on
Commit
4c41b07
1 Parent(s): cb53b98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -71,7 +71,7 @@ def predict(img):
71
 
72
  preds = model.predict(img)
73
  pred_texts = decode_batch_predictions(preds)
74
- return "output: " + pred_texts[0]
75
 
76
  iface = gr.Interface(fn=predict, inputs="image", outputs="text")
77
- iface.launch(share=True)
 
71
 
72
  preds = model.predict(img)
73
  pred_texts = decode_batch_predictions(preds)
74
+ return pred_texts[0]
75
 
76
  iface = gr.Interface(fn=predict, inputs="image", outputs="text")
77
+ iface.launch()