Gyufyjk Fabrice-TIERCELIN commited on
Commit
455c2e5
1 Parent(s): 9982ba2

This PR fixes the launching failure by caching the examples after the start (#1)

Browse files

- Try not caching the examples (4fd74fbd35365424fe9b4bffdfd28e9bb8fceb36)


Co-authored-by: Fabrice TIERCELIN <Fabrice-TIERCELIN@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -321,7 +321,7 @@ with gr.Blocks(css=css) as demo:
321
  ['examples/input/case6.mp4', '', '', 1.0, 0.2, 'DDIM', 25, 7.5, 77015909],
322
  ],
323
  inputs=[init_img,prompt_textbox,negative_prompt_textbox,ip_adapter_scale,temporal_scale,sampler_dropdown,sample_step_slider,cfg_scale_slider,seed_textbox],
324
- cache_examples=True,
325
  outputs=[result_video],
326
  fn=controller.foley,
327
  )
 
321
  ['examples/input/case6.mp4', '', '', 1.0, 0.2, 'DDIM', 25, 7.5, 77015909],
322
  ],
323
  inputs=[init_img,prompt_textbox,negative_prompt_textbox,ip_adapter_scale,temporal_scale,sampler_dropdown,sample_step_slider,cfg_scale_slider,seed_textbox],
324
+ cache_examples=False,
325
  outputs=[result_video],
326
  fn=controller.foley,
327
  )