Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -74,9 +74,6 @@ iface = gr.Interface(
|
|
74 |
title="Paper Selection Prediction",
|
75 |
description="Predict if @_akhaliq will select your paper. Enter the title, authors, and abstract of your paper.",
|
76 |
live=False,
|
77 |
-
queue=True,
|
78 |
-
max_threads=1,
|
79 |
-
max_queue_size=20
|
80 |
)
|
81 |
|
82 |
-
iface.launch()
|
|
|
74 |
title="Paper Selection Prediction",
|
75 |
description="Predict if @_akhaliq will select your paper. Enter the title, authors, and abstract of your paper.",
|
76 |
live=False,
|
|
|
|
|
|
|
77 |
)
|
78 |
|
79 |
+
iface.queue(concurrency_limit=1, max_size=20).launch(enable_queue=True)
|