wangfuyun commited on
Commit
0e86fc7
1 Parent(s): d2a129d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -55,7 +55,7 @@ pipe = StableVideoDiffusionPipeline.from_pretrained(
55
  variant="fp16",
56
  )
57
  pipe.to("cuda")
58
- # pipe.enable_model_cpu_offload() # for smaller cost
59
  model_select("AnimateLCM-SVD-xt-1.1.safetensors")
60
  # pipe.unet = torch.compile(pipe.unet, mode="reduce-overhead", fullgraph=True) # for faster inference
61
 
 
55
  variant="fp16",
56
  )
57
  pipe.to("cuda")
58
+ pipe.enable_model_cpu_offload() # for smaller cost
59
  model_select("AnimateLCM-SVD-xt-1.1.safetensors")
60
  # pipe.unet = torch.compile(pipe.unet, mode="reduce-overhead", fullgraph=True) # for faster inference
61