hpoghos commited on
Commit
69e088c
·
verified ·
1 Parent(s): 0f4ab3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -34,7 +34,6 @@ device = args.device
34
  # --------------------------
35
  # ----- Configurations -----
36
  # --------------------------
37
- ckpt_file_streaming_t2v = Path("t2v_enhanced/checkpoints/streaming_t2v.ckpt").absolute()
38
  cfg_v2v = {'downscale': 1, 'upscale_size': (1280, 720), 'model_id': 'damo/Video-to-Video', 'pad': True}
39
 
40
 
@@ -46,6 +45,8 @@ ms_model = init_modelscope(device)
46
  ad_model = init_animatediff(device)
47
  svd_model = init_svd(device)
48
  sdxl_model = init_sdxl(device)
 
 
49
  stream_cli, stream_model = init_streamingt2v_model(ckpt_file_streaming_t2v, result_fol)
50
  msxl_model = init_v2v_model(cfg_v2v)
51
 
 
34
  # --------------------------
35
  # ----- Configurations -----
36
  # --------------------------
 
37
  cfg_v2v = {'downscale': 1, 'upscale_size': (1280, 720), 'model_id': 'damo/Video-to-Video', 'pad': True}
38
 
39
 
 
45
  ad_model = init_animatediff(device)
46
  svd_model = init_svd(device)
47
  sdxl_model = init_sdxl(device)
48
+
49
+ ckpt_file_streaming_t2v = Path("t2v_enhanced/checkpoints/streaming_t2v.ckpt").absolute()
50
  stream_cli, stream_model = init_streamingt2v_model(ckpt_file_streaming_t2v, result_fol)
51
  msxl_model = init_v2v_model(cfg_v2v)
52