Ryan-PR commited on
Commit
004b6a0
·
verified ·
1 Parent(s): 017ba11

Update pipeline.py

Browse files
Files changed (1) hide show
  1. pipeline.py +2 -2
pipeline.py CHANGED
@@ -267,11 +267,11 @@ class RefacadePipeline(DiffusionPipeline, WanLoraLoaderMixin):
267
  self.vae_scale_factor_spatial = 8
268
  self.video_processor = VideoProcessor(vae_scale_factor=self.vae_scale_factor_spatial)
269
  self.empty_embedding = torch.load(
270
- "/ms/AIGC/huangyouze/fish_pipeline/stage10_t5_encode/image/empty.pt",
271
  map_location="cpu"
272
  )
273
  self.negative_embedding = torch.load(
274
- "/ms/AIGC/huangyouze/fish_pipeline/stage10_t5_encode/image/negative.pt",
275
  map_location="cpu"
276
  )
277
 
 
267
  self.vae_scale_factor_spatial = 8
268
  self.video_processor = VideoProcessor(vae_scale_factor=self.vae_scale_factor_spatial)
269
  self.empty_embedding = torch.load(
270
+ "./text_embedding/empty.pt",
271
  map_location="cpu"
272
  )
273
  self.negative_embedding = torch.load(
274
+ "./text_embedding/negative.pt",
275
  map_location="cpu"
276
  )
277