-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
What was the best score of the size nb_frames and overlap? #14
Comments
Hello, the number of frame was set to 30 and the overlap to 0.2 |
Thank you very much. May I ask some questions? First, did you extract and train all the features of Konvid and then test on test patch features? Second, if I set nb_frames 30 and overlap 0.2, the shape of feature is (2880, 2560) (backbone: mnasnet) |
Hi @circlebig, we used a pretraining backbone to extract feature from dataset, we used 25 as number of patches. So the shape of the features will be (30, 25, 2560), to avoid resource limitation, you can process the dataset image by image for features extraction. |
Thank you. Was your number of features same as number of videos? |
Welcome ;) The number of features depends solely on the backbone. For MnasNet, each video will have features of shape (30, 25, 2560) |
Oh, I mean the number of features. For example, there are 1200 videos in Konvid data. So my number of features is 1200. Is is same as yours? 1200 |
It does not depend on the number of videos. For each video, you will get a tensor of shape (30, 25, 2560) representing its features. If you will compute the features of the Konvid dataset (1200 videos), you will get 1200 tensors. |
1200 tensors right. Thank you . |
Hi, may you tell me the number of overlap and nb_frames?
The text was updated successfully, but these errors were encountered: