-
Notifications
You must be signed in to change notification settings - Fork 80
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
result in ucf101 #11
Comments
Hi, I looks good acoording to the paper but when using inference how did it work? |
I also trained the model on ucf101 dataset. At first, I used the default hyperparameters which the author gave. Then I got the 73.50% of top 1 accuracy. Afterwards, I changed the learning schedule from StepLR to ReduceLROnPlateau and hyperparameters such as learning rates, weight decay, and so on. The top 1 accuracy became about 94%. Therefore, I think we should use our own hyperparameters and learning schedule so that we could get better results on our own datasets. |
@tomanick how did you search for the hyperparameters? Would you mind sharing the ones that have worked for you? |
@patykov Finally, maybe there would be much better hyperparameters than I used. Just give it a try and maybe you would find a surprise. Good luck! |
@tomanick did you find a way to set the temporal stride τ used on input frames? in the paper they used values equal to 16, 8, ... |
@MStumpp do you want to set the temporal stride like 16, 8 ? you can look into slowfastnet.py/class slowfast / forward find code like this slow = self.SlowPath(input[:, :, ::16, :, :], lateral) input is a 5D tensor which have dim like [batch ,channel,temporal, h,w] ,so once you have a input with 64 frames, the temporal axis is 64 and you can use ::16 ,that means you choose 4 frames in 64 frames with stride 16 |
@tomanick @qichenghan666 @HorusMaster Did you guys try to validate this model on datasets from the paper (Kinetics, Charades or anything else)? Does the accuracy look representative of the paper? |
What is the accuracy of your validation sets, I hope you can tell me, thank you |
@tomanick The top 1 accuracy became about 94% is the train accuracy for training from scratch ? |
@HorusMaster |
|
用好一点的显卡,然后精度就提高了哈哈哈哈 |
Hai @wangpanpan666 @r1c7 after completion of training on how to test model ??? can anyone provide an inference code it's very useful for me Thanks |
I trained the model in ucf101, after 70 epoch, the top 1 accuracy is 73.3%, the top 5 accuracy is 95.7% in training data, is this a normal result?
The text was updated successfully, but these errors were encountered: