Spaces:
Sleeping
Sleeping
Added max_threads to launch() instead of concurrency_count due to Gradio version
Browse files
app.py
CHANGED
@@ -1079,4 +1079,4 @@ with gr.Blocks(theme=soft, title="Social Bias Testing in Language Models",
|
|
1079 |
att1.change(fn=changeTerm, inputs=[], outputs=[csv])
|
1080 |
att2.change(fn=changeTerm, inputs=[], outputs=[csv])
|
1081 |
|
1082 |
-
iface.queue(
|
|
|
1079 |
att1.change(fn=changeTerm, inputs=[], outputs=[csv])
|
1080 |
att2.change(fn=changeTerm, inputs=[], outputs=[csv])
|
1081 |
|
1082 |
+
iface.queue().launch(max_threads=2) #concurrency_count=2
|