jadechoghari commited on
Commit
b8ac6f6
1 Parent(s): 585063a

Update generate.py

Browse files
Files changed (1) hide show
  1. generate.py +2 -1
generate.py CHANGED
@@ -355,7 +355,8 @@ class Generator(nn.Module):
355
  clean_latent = self.ddim_sample(self.init_noise, conds)
356
  torch.cuda.empty_cache()
357
  clean_frames = self.decode_latents_batch(clean_latent)
358
- cur_output_path = os.path.join(output_path, edit_name)
 
359
  save_config(self.config, cur_output_path, gene = True)
360
  save_video(clean_frames, cur_output_path, save_frame = self.save_frame)
361
 
 
355
  clean_latent = self.ddim_sample(self.init_noise, conds)
356
  torch.cuda.empty_cache()
357
  clean_frames = self.decode_latents_batch(clean_latent)
358
+ # cur_output_path = os.path.join(output_path, edit_name)
359
+ cur_output_path = os.path.join("./", edit_name)
360
  save_config(self.config, cur_output_path, gene = True)
361
  save_video(clean_frames, cur_output_path, save_frame = self.save_frame)
362