Update app.py
Browse files
app.py
CHANGED
@@ -20,4 +20,4 @@ examples = ['siamese.jpg']
|
|
20 |
interpretation='default'
|
21 |
enable_queue=True
|
22 |
|
23 |
-
gr.Interface(fn=predict,inputs=gr.components.Image(512, 512),outputs=gr.components.Label(num_top_classes=3),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
|
|
|
20 |
interpretation='default'
|
21 |
enable_queue=True
|
22 |
|
23 |
+
gr.Interface(fn=predict,inputs=gr.components.Image(height=512, width=512),outputs=gr.components.Label(num_top_classes=3),title=title,description=description,article=article,examples=examples,interpretation=interpretation,enable_queue=enable_queue).launch()
|