Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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("
|
26 |
-
single_file_url = "https://huggingface.co/Lightricks/LTX-Video/ltx-video-2b-v0.9.1.safetensors"
|
27 |
-
transformer = LTXVideoTransformer3DModel.
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|