yuntian-deng commited on
Commit
08d19d9
·
verified ·
1 Parent(s): edce13a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
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)