LPX55 commited on
Commit
eb29a27
·
verified ·
1 Parent(s): d588554

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- # pipe.enable_model_cpu_offload()
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