-
Notifications
You must be signed in to change notification settings - Fork 7
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
Reproduce LSTR's performance (THUMOS14 69.5) #7
Comments
Additionally, I would like to inquire about the "Object_feature" in your cfg compared to LSTR's cfg. This seems to be causing issues in my code execution. Does this imply that you have made some modifications to the LSTR code? Could you please provide an overview of the specific areas you adjusted? Is this related to not achieving a 69.5 mAP score? |
The object feature is not used here. It is only a placeholder. |
I found my mistake, thank you. Using my own target_perframe, the mAP is 62. When using TeSTra's target_perframe, the mAP becomes 69.9. I would like to know how you generated the target_perframe. Assuming there are 135 frames in video1, and you want to create a [135, 22] target_perframe. Did you refer to the annotations provided by THUMOS14 for each action? For instance, if there is an annotation "Action 3: video1 0.2s to 1.1s,". Because fps=4, So create the target_perframe using [int(0.2 * 4):int(1.1 * 4), action]. Is this how you constructed the target_perframe? |
Hi @happy95059 I didn't create my own target_perframe but used TeSTra's provided frame. But your logic seems fine to me. You can compare with existing thumos annotations and see if it makes sense. |
I used the THUMOS14 RGB and flow features provided by you, and I also used the parameters in the code and configs files from the LSTR GitHub repository. However, the result I obtained is only an mAP of 62 (paper is 69.5) . Could you please share how you managed to reproduce LSTR's performance? Thank you.
I run this code and get mAP=62
The text was updated successfully, but these errors were encountered: