tsqn commited on
Commit
429baa7
·
verified ·
1 Parent(s): 2f4d9bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -6
app.py CHANGED
@@ -22,13 +22,19 @@ torch.set_grad_enabled(False)
22
  gc.collect()
23
  torch.cuda.empty_cache()
24
 
25
- ckpt_path = Path("a-r-r-o-w/LTX-Video-0.9.1-diffusers")
26
- single_file_url = "https://huggingface.co/Lightricks/LTX-Video/ltx-video-2b-v0.9.1.safetensors"
27
- transformer = LTXVideoTransformer3DModel.from_single_file(
28
- single_file_url, torch_dtype=torch.bfloat16
 
 
 
 
 
 
 
 
29
  )
30
- vae = AutoencoderKLLTXVideo.from_single_file(
31
- single_file_url, torch_dtype=torch.bfloat16)
32
  vae.eval()
33
  vae = vae.to("cuda")
34
 
 
22
  gc.collect()
23
  torch.cuda.empty_cache()
24
 
25
+ ckpt_path = Path("Lightricks/LTX-Video-0.9.5")
26
+ #single_file_url = "https://huggingface.co/Lightricks/LTX-Video/ltx-video-2b-v0.9.1.safetensors"
27
+ transformer = LTXVideoTransformer3DModel.from_pretrained(
28
+ ckpt_path,
29
+ subfolder="transformer",
30
+ torch_dtype=torch.bfloat16
31
+ ).to("cuda")
32
+
33
+ vae = AutoencoderKLLTXVideo.from_pretrained(
34
+ ckpt_path,
35
+ subfolder="vae",
36
+ torch_dtype=torch.bfloat16
37
  )
 
 
38
  vae.eval()
39
  vae = vae.to("cuda")
40