RamAnanth1 commited on
Commit
4997010
β€’
1 Parent(s): 54ad002

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -24,9 +24,8 @@ REPO_ID = "RamAnanth1/videocrafter-text2video"
24
  ckpt_path = cached_download(hf_hub_url(REPO_ID, 'model.ckpt'))
25
  # # get model & sampler
26
  model, _, _ = load_model(config, ckpt_path,
27
- inject_lora=opt.inject_lora,
28
- lora_scale=opt.lora_scale,
29
- lora_path=opt.lora_path
30
  )
31
  ddim_sampler = DDIMSampler(model)
32
 
 
24
  ckpt_path = cached_download(hf_hub_url(REPO_ID, 'model.ckpt'))
25
  # # get model & sampler
26
  model, _, _ = load_model(config, ckpt_path,
27
+ inject_lora=False,
28
+ lora_scale=None,
 
29
  )
30
  ddim_sampler = DDIMSampler(model)
31