Open-Sora/opensora/datasets/datasets.py

168 lines
5.2 KiB
Python
Raw Normal View History

2024-03-28 15:04:43 +01:00
import os
2024-03-15 15:00:46 +01:00
import numpy as np
2024-03-25 11:36:56 +01:00
import pandas as pd
2024-03-15 15:00:46 +01:00
import torch
import torchvision
from torchvision.datasets.folder import IMG_EXTENSIONS, pil_loader
2024-03-26 10:02:41 +01:00
from opensora.registry import DATASETS
2024-03-15 15:00:46 +01:00
2024-03-26 10:32:15 +01:00
from .utils import VID_EXTENSIONS, get_transforms_image, get_transforms_video, temporal_random_crop
2024-03-15 15:00:46 +01:00
2024-03-26 10:02:41 +01:00
@DATASETS.register_module()
class VideoTextDataset(torch.utils.data.Dataset):
2024-03-15 15:00:46 +01:00
"""load video according to the csv file.
Args:
target_video_len (int): the number of video frames will be load.
align_transform (callable): Align different videos in a specified size.
temporal_sample (callable): Sample the target length of a video.
"""
def __init__(
self,
2024-03-26 10:02:41 +01:00
data_path,
2024-03-15 15:00:46 +01:00
num_frames=16,
frame_interval=1,
2024-03-26 09:50:36 +01:00
image_size=(256, 256),
2024-03-26 17:24:46 +01:00
transform_name="center",
2024-03-15 15:00:46 +01:00
):
2024-03-26 10:02:41 +01:00
self.data_path = data_path
self.data = pd.read_csv(data_path)
2024-03-26 09:50:36 +01:00
self.num_frames = num_frames
self.frame_interval = frame_interval
2024-03-26 10:02:41 +01:00
self.image_size = image_size
2024-03-26 09:50:36 +01:00
self.transforms = {
2024-03-26 17:24:46 +01:00
"image": get_transforms_image(transform_name, image_size),
"video": get_transforms_video(transform_name, image_size),
2024-03-26 09:50:36 +01:00
}
2024-03-15 15:00:46 +01:00
2024-03-30 06:34:19 +01:00
def _print_data_number(self):
num_videos = 0
num_images = 0
for path in self.data["path"]:
if self.get_type(path) == "video":
num_videos += 1
else:
num_images += 1
print(f"Dataset contains {num_videos} videos and {num_images} images.")
2024-03-26 09:50:36 +01:00
def get_type(self, path):
2024-03-28 15:04:43 +01:00
ext = os.path.splitext(path)[-1].lower()
2024-03-23 09:32:51 +01:00
if ext.lower() in VID_EXTENSIONS:
2024-03-26 09:50:36 +01:00
return "video"
2024-03-15 15:00:46 +01:00
else:
2024-03-28 15:04:43 +01:00
assert ext.lower() in IMG_EXTENSIONS, f"Unsupported file format: {ext}"
2024-03-26 09:50:36 +01:00
return "image"
2024-03-15 15:00:46 +01:00
def getitem(self, index):
2024-03-25 11:36:56 +01:00
sample = self.data.iloc[index]
path = sample["path"]
text = sample["text"]
2024-03-26 09:50:36 +01:00
file_type = self.get_type(path)
2024-03-15 15:00:46 +01:00
2024-03-26 09:50:36 +01:00
if file_type == "video":
# loading
vframes, _, _ = torchvision.io.read_video(filename=path, pts_unit="sec", output_format="TCHW")
2024-03-15 15:00:46 +01:00
# Sampling video frames
2024-03-26 10:32:15 +01:00
video = temporal_random_crop(vframes, self.num_frames, self.frame_interval)
2024-03-26 09:50:36 +01:00
# transform
transform = self.transforms["video"]
video = transform(video) # T C H W
2024-03-15 15:00:46 +01:00
else:
2024-03-26 09:50:36 +01:00
# loading
2024-03-15 15:00:46 +01:00
image = pil_loader(path)
2024-03-26 09:50:36 +01:00
# transform
transform = self.transforms["image"]
image = transform(image)
# repeat
2024-03-15 15:00:46 +01:00
video = image.unsqueeze(0).repeat(self.num_frames, 1, 1, 1)
# TCHW -> CTHW
video = video.permute(1, 0, 2, 3)
return {"video": video, "text": text}
def __getitem__(self, index):
for _ in range(10):
try:
return self.getitem(index)
except Exception as e:
print(e)
index = np.random.randint(len(self))
raise RuntimeError("Too many bad data.")
def __len__(self):
2024-03-25 11:36:56 +01:00
return len(self.data)
@DATASETS.register_module()
class VariableVideoTextDataset(VideoTextDataset):
def __init__(
self,
data_path,
num_frames=None,
frame_interval=1,
image_size=None,
transform_name=None,
):
super().__init__(data_path, num_frames, frame_interval, image_size, transform_name=None)
self.transform_name = transform_name
self.data_info = self.data[["num_frames", "height", "width"]].to_numpy().tolist()
def set_data_info(self, idx, T, H, W):
self.data_info[idx] = [T, H, W]
def get_data_info(self, index):
T = self.data.iloc[index]["num_frames"]
H = self.data.iloc[index]["height"]
W = self.data.iloc[index]["width"]
return T, H, W
def getitem(self, index):
sample = self.data.iloc[index]
path = sample["path"]
text = sample["text"]
file_type = self.get_type(path)
num_frames, height, width = self.data_info[index]
ar = width / height
if file_type == "video":
# loading
vframes, _, _ = torchvision.io.read_video(filename=path, pts_unit="sec", output_format="TCHW")
# Sampling video frames
video = temporal_random_crop(vframes, num_frames, self.frame_interval)
# transform
transform = get_transforms_video(self.transform_name, (height, width))
video = transform(video) # T C H W
else:
# loading
image = pil_loader(path)
# transform
transform = get_transforms_image(self.transform_name, (height, width))
image = transform(image)
# repeat
2024-03-28 15:04:43 +01:00
video = image.unsqueeze(0)
# TCHW -> CTHW
video = video.permute(1, 0, 2, 3)
return {"video": video, "text": text, "num_frames": num_frames, "height": height, "width": width, "ar": ar}
def __getitem__(self, index):
for _ in range(10):
try:
return self.getitem(index)
except Exception as e:
print(e)
index = np.random.randint(len(self))
raise RuntimeError("Too many bad data.")