Spaces:
Runtime error
Runtime error
Commit
·
fa846c5
1
Parent(s):
8e49105
fixed share issue with hg
Browse files
app.py
CHANGED
@@ -13,5 +13,5 @@ def predict(img):
|
|
13 |
import gradio as gr
|
14 |
|
15 |
examples = ['shaheen.jpg', 'saker.jpg']
|
16 |
-
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3), examples=examples).launch(
|
17 |
|
|
|
13 |
import gradio as gr
|
14 |
|
15 |
examples = ['shaheen.jpg', 'saker.jpg']
|
16 |
+
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3), examples=examples).launch(inline=False)
|
17 |
|