Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -51,9 +51,9 @@ global pipe
|
|
51 |
pipe = HunyuanVideoPipeline.from_pretrained(model_id, transformer=transformer, torch_dtype=torch.bfloat16)
|
52 |
pipe.to("cuda")
|
53 |
# Enable memory savings
|
54 |
-
pipe.vae.enable_slicing()
|
55 |
pipe.vae.enable_tiling()
|
56 |
-
|
57 |
|
58 |
with torch.no_grad(): # enable image inputs
|
59 |
initial_input_channels = pipe.transformer.config.in_channels
|
|
|
51 |
pipe = HunyuanVideoPipeline.from_pretrained(model_id, transformer=transformer, torch_dtype=torch.bfloat16)
|
52 |
pipe.to("cuda")
|
53 |
# Enable memory savings
|
54 |
+
# pipe.vae.enable_slicing()
|
55 |
pipe.vae.enable_tiling()
|
56 |
+
pipe.enable_model_cpu_offload()
|
57 |
|
58 |
with torch.no_grad(): # enable image inputs
|
59 |
initial_input_channels = pipe.transformer.config.in_channels
|