Update app.py
Browse files
app.py
CHANGED
@@ -86,6 +86,6 @@ image = gr.Image(height=180,width=180)
|
|
86 |
label = gr.Label(num_top_classes=5)
|
87 |
#gr.Interface(fn=predict_image, inputs=image, outputs=label,interpretation='default').launch(debug='True')
|
88 |
|
89 |
-
gr.Interface(predict_image, inputs=image, outputs=label )
|
90 |
|
91 |
iface.launch(debug=True)
|
|
|
86 |
label = gr.Label(num_top_classes=5)
|
87 |
#gr.Interface(fn=predict_image, inputs=image, outputs=label,interpretation='default').launch(debug='True')
|
88 |
|
89 |
+
iface = gr.Interface(predict_image, inputs=image, outputs=label )
|
90 |
|
91 |
iface.launch(debug=True)
|