We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use_multi_images_for_video
I noticed that when setting use_multi_images_for_video to True, the input video frames seem to be repeated.
True
if self.video_sampling_strategy.get('use_multi_images_for_video', False): new_frames = [] for f in frames: new_frames.extend([f, f]) frames = new_frames
As a result, setting n_frames to 16 leads to 32 images fed into the model.
n_frames
Could you please tell me what the purpose of this operation is? Thanks a lot!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed that when setting
use_multi_images_for_video
toTrue
, the input video frames seem to be repeated.As a result, setting
n_frames
to 16 leads to 32 images fed into the model.Could you please tell me what the purpose of this operation is? Thanks a lot!
The text was updated successfully, but these errors were encountered: