NikeZoldyck commited on
Commit
2128d20
1 Parent(s): 07215a3

changing queue defaults

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -194,6 +194,7 @@ with demo:
194
  gr.Examples([["profile_new.png","back_img.png"]],[final_input_img, final_back_img])
195
  gr.Examples([["profile_new.png","bedroom with a bookshelf in the background and a small stool to sit on the right side, photorealistic",3]], [final_input_img,text,samples])
196
 
197
- demo.queue()
198
- demo.launch()
 
199
 
 
194
  gr.Examples([["profile_new.png","back_img.png"]],[final_input_img, final_back_img])
195
  gr.Examples([["profile_new.png","bedroom with a bookshelf in the background and a small stool to sit on the right side, photorealistic",3]], [final_input_img,text,samples])
196
 
197
+
198
+
199
+ demo.queue(concurrency_count=40, max_size=20).launch(max_threads=150)
200