Update app.py - removed the enable_queue parameter
Browse files
app.py
CHANGED
|
@@ -44,8 +44,6 @@ examples = [
|
|
| 44 |
['NORMAL2-IM-0222-0001.jpeg'],
|
| 45 |
]
|
| 46 |
|
| 47 |
-
enable_queue = True
|
| 48 |
-
|
| 49 |
|
| 50 |
iface = gr.Interface(
|
| 51 |
fn=predict,
|
|
@@ -55,8 +53,7 @@ iface = gr.Interface(
|
|
| 55 |
inputs=image,
|
| 56 |
outputs=label,
|
| 57 |
theme="default",
|
| 58 |
-
examples=examples
|
| 59 |
-
enable_queue=enable_queue
|
| 60 |
)
|
| 61 |
|
| 62 |
iface.launch(inline=False)
|
|
|
|
| 44 |
['NORMAL2-IM-0222-0001.jpeg'],
|
| 45 |
]
|
| 46 |
|
|
|
|
|
|
|
| 47 |
|
| 48 |
iface = gr.Interface(
|
| 49 |
fn=predict,
|
|
|
|
| 53 |
inputs=image,
|
| 54 |
outputs=label,
|
| 55 |
theme="default",
|
| 56 |
+
examples=examples
|
|
|
|
| 57 |
)
|
| 58 |
|
| 59 |
iface.launch(inline=False)
|