Yaron Koresh commited on
Commit
af4cba1
·
verified ·
1 Parent(s): 01ee4f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -193,7 +193,7 @@ with gr.Blocks(theme=gr.themes.Soft(),css=css,js=js) as demo:
193
  def ret(idx):
194
  result[idx] = infer(prompt,prompt2)
195
  def rets():
196
- Pool().map(ret,[range(12)])
197
  run_button.click(rets)
198
 
199
  demo.queue().launch()
 
193
  def ret(idx):
194
  result[idx] = infer(prompt,prompt2)
195
  def rets():
196
+ Pool().map(ret,[[i] for i in range(12)])
197
  run_button.click(rets)
198
 
199
  demo.queue().launch()