shuanholmes commited on
Commit
6b7562f
1 Parent(s): 8979df6

[FireFlow] Change Cache Mode to Lazy

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -291,7 +291,7 @@ def create_demo(model_name: str, device: str = "cuda:0" if torch.cuda.is_availab
291
  ],
292
  outputs=[output_image],
293
  fn=edit,
294
- cache_mode='eager',
295
  cache_examples=True # Enable caching
296
  )
297
 
 
291
  ],
292
  outputs=[output_image],
293
  fn=edit,
294
+ cache_mode='lazy',
295
  cache_examples=True # Enable caching
296
  )
297