Merge remote-tracking branch 'upstream/main' into dev

This commit is contained in:
OleehyO 2025-01-12 05:58:07 +00:00
commit 30ba1085ff
2 changed files with 2 additions and 1 deletions

View File

@ -147,6 +147,7 @@ class BaseI2VDataset(Dataset):
frames, image = self.preprocess(video, image)
frames = frames.to(self.device)
image = image.to(self.device)
image = self.image_transform(image)
# Current shape of frames: [F, C, H, W]
frames = self.video_transform(frames)

View File

@ -539,7 +539,7 @@ class Trainer:
video, self.state.train_frames, self.state.train_height, self.state.train_width
)
# Convert video tensor (F, C, H, W) to list of PIL images
video = (video * 255).round().clamp(0, 255).to(torch.uint8)
video = video.round().clamp(0, 255).to(torch.uint8)
video = [Image.fromarray(frame.permute(1, 2, 0).cpu().numpy()) for frame in video]
logger.debug(