You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for reminding. We have corrected this in the subsequent use but have not updated this code. Even with a low probability, this may cause an error when length > self.max_num_frames and label[1] == self.max_num_frames - 1.
Could you please tell me how to process the splitted C3D features of Activity Caption dataset? It is weired five parts and I cannot figure out how to restore such files with suffixs of .part-XX.
In CMIN_moment_retrieval/dataloaders/clip_loader.py line 66
if label[1] == video.shape[0] - 1:
Shouldn't it be:
if label[1] == ori_video_len:
?Since you changed the
video
and its length is now alwaysself.max_num_frames
The text was updated successfully, but these errors were encountered: