Changed the parameters of launch
Browse files
app.py
CHANGED
@@ -14,4 +14,4 @@ images = gr.inputs.Image(shape=(192,192))
|
|
14 |
label = gr.outputs.Label(num_top_classes=4)
|
15 |
examples = ['airplane.jpg','helicopter.jpg','missile.jpg','rocketship.jpg']
|
16 |
intr = gr.Interface(fn = classify_image,inputs=images,outputs=label,examples=examples)
|
17 |
-
intr.launch(inline=False
|
|
|
14 |
label = gr.outputs.Label(num_top_classes=4)
|
15 |
examples = ['airplane.jpg','helicopter.jpg','missile.jpg','rocketship.jpg']
|
16 |
intr = gr.Interface(fn = classify_image,inputs=images,outputs=label,examples=examples)
|
17 |
+
intr.launch(inline=False)
|