fix: division by zero error at create video indices

This commit is contained in:
Roooy 2024-09-10 17:02:02 +09:00
parent 354c906f81
commit ccb57e095d

View File

@ -408,7 +408,7 @@ class SFTDataset(Dataset):
num_frames = self.max_num_frames
start = int(self.skip_frms_num)
end = int(ori_vlen - self.skip_frms_num)
indices = np.arange(start, end, (end - start) // num_frames).astype(int)
indices = np.arange(start, end, max((end - start) // num_frames), 1).astype(int)
temp_frms = vr.get_batch(np.arange(start, end))
assert temp_frms is not None
tensor_frms = (