Update app.py
Browse files
app.py
CHANGED
@@ -21,10 +21,10 @@ enable_queue=True
|
|
21 |
|
22 |
gr.Interface(fn=predict,
|
23 |
inputs=gr.inputs.Image(shape=(300, 300)),
|
24 |
-
outputs=gr.outputs.Label(num_top_classes=
|
25 |
title=title,
|
26 |
description=description,
|
27 |
article=article,
|
28 |
examples=examples,
|
29 |
interpretation=interpretation,
|
30 |
-
enable_queue=enable_queue).launch()
|
|
|
21 |
|
22 |
gr.Interface(fn=predict,
|
23 |
inputs=gr.inputs.Image(shape=(300, 300)),
|
24 |
+
outputs=gr.outputs.Label(num_top_classes=2),
|
25 |
title=title,
|
26 |
description=description,
|
27 |
article=article,
|
28 |
examples=examples,
|
29 |
interpretation=interpretation,
|
30 |
+
enable_queue=enable_queue).launch(share=True)
|