Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -21,5 +21,4 @@ interpretation = 'default'
|
|
21 |
enable_queue = True
|
22 |
|
23 |
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3),
|
24 |
-
title=title, description=description, article=article, examples=examples, interpretation=interpretation
|
25 |
-
enable_queue=enable_queue).launch()
|
|
|
21 |
enable_queue = True
|
22 |
|
23 |
gr.Interface(fn=predict, inputs=gr.inputs.Image(shape=(512, 512)), outputs=gr.outputs.Label(num_top_classes=3),
|
24 |
+
title=title, description=description, article=article, examples=examples, interpretation=interpretation).launch(enable_queue=enable_queue)
|
|