Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -73,9 +73,5 @@ def predict(img):
|
|
73 |
pred_texts = decode_batch_predictions(preds)
|
74 |
return "output: " + pred_texts[0]
|
75 |
|
76 |
-
|
77 |
-
def greet(name):
|
78 |
-
return "Hello " + name + "!!"
|
79 |
-
|
80 |
iface = gr.Interface(fn=predict, inputs="image", outputs="text")
|
81 |
-
iface.launch(
|
|
|
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)
|