kelseye commited on
Commit
658070f
·
verified ·
1 Parent(s): 89c320a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -284,13 +284,12 @@ def start_app():
284
  inputs=[ref_img, video, model_id, model],
285
  outputs=output_video,
286
  fn=app.predict,
287
- cache_examples=False,
288
  )
289
 
290
  demo.launch(
291
  server_name="0.0.0.0",
292
- server_port=7860,
293
- cache_examples=True
294
  )
295
 
296
 
 
284
  inputs=[ref_img, video, model_id, model],
285
  outputs=output_video,
286
  fn=app.predict,
287
+ cache_examples="lazy",
288
  )
289
 
290
  demo.launch(
291
  server_name="0.0.0.0",
292
+ server_port=7860
 
293
  )
294
 
295