mirror of
https://github.com/THUDM/CogVideo.git
synced 2025-04-05 19:41:59 +08:00
fix potential bug of i2v
Image value is in [0, 255] and should be transformed into [-1, 1], similar to video.
This commit is contained in:
parent
8f1829f1cd
commit
35383e2db3
@ -153,7 +153,7 @@ class BaseI2VDataset(Dataset):
|
||||
|
||||
# Add image into the first frame.
|
||||
# Note, **this operation maybe model-specific**, and maybe change in the future.
|
||||
frames = torch.cat([image.unsqueeze(0), frames], dim=0)
|
||||
frames = torch.cat([self.image_transform(image).unsqueeze(0), frames], dim=0)
|
||||
|
||||
# Convert to [B, C, F, H, W]
|
||||
frames = frames.unsqueeze(0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user