Spaces:
Sleeping
Sleeping
demo
Browse files
app.py
CHANGED
@@ -11,6 +11,7 @@ def classify_image(img):
|
|
11 |
|
12 |
|
13 |
examples = ['grizzly.jpg']
|
14 |
-
enable_queue=True
|
15 |
|
16 |
-
gr.Interface(fn=classify_image,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label()
|
|
|
|
|
|
11 |
|
12 |
|
13 |
examples = ['grizzly.jpg']
|
|
|
14 |
|
15 |
+
demo = gr.Interface(fn=classify_image,inputs=gr.inputs.Image(shape=(512, 512)),outputs=gr.outputs.Label())
|
16 |
+
if __name__ == "__main__":
|
17 |
+
demo.launch()
|