Spaces:
Running
on
A10G
Running
on
A10G
Update app.py
Browse files
app.py
CHANGED
@@ -233,11 +233,13 @@ and check out more tools at my
|
|
233 |
</p>
|
234 |
"""
|
235 |
|
236 |
-
gr.Interface(
|
237 |
inference,
|
238 |
inputs,
|
239 |
outputs,
|
240 |
title=title, description=description,
|
241 |
article=article,
|
242 |
examples=[['example01.jpg'], ['example02.jpg']]
|
243 |
-
)
|
|
|
|
|
|
233 |
</p>
|
234 |
"""
|
235 |
|
236 |
+
io = gr.Interface(
|
237 |
inference,
|
238 |
inputs,
|
239 |
outputs,
|
240 |
title=title, description=description,
|
241 |
article=article,
|
242 |
examples=[['example01.jpg'], ['example02.jpg']]
|
243 |
+
)
|
244 |
+
io.queue(max_size=15)
|
245 |
+
io.launch()
|