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
video_len=2ifbatch_size==1else3# InternVL patches out and removes frames after processing
343
+
# InternVL internally collects frames from all the videos in a batch and flattens the batch dimension (B T C H W) -> (B*T C H W) then patches and removes the frames
344
+
# hence output length does not equal batch size
345
+
# removed hardcoded video length check video_len = 2 if batch_size == 1 else 3
346
+
# from experiment video_len looks like batch_size + 1
347
+
# TODO: update expected video_len calculation based on the internal processing logic of InternVLProcessor
0 commit comments