-
Notifications
You must be signed in to change notification settings - Fork 9
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
Not very clearly about ActorObserverFC7.py line 28 #4
Comments
You are correct. Fixed in c26adeb :) These weights for alignment didn't actually end up being used for the alignment task in the final paper, but I experimented with it a bit, and it seems promising.
Hope that helps! Let me know if you have any questions. PS. ActorObserver is a part of the new PyVideoResearch codebase, that should be better organized and have more features. |
Thank you for your kind answer!
When I train, weight median always equals 1 and all weights are 1 . Do you know what the reason may be? |
Yea, I ran into that problem sometimes. I am not really sure what the reason for that is. If I remember correctly it doesn't happen when you use Hope that helps! |
During the training , the accuracy of the output sometimes becomes 1 after iterating a few times. What is the reason for this? Is it over fitting? |
The network is giving a weight to each of the test examples, and then evaluating just on the top fraction. topk1, topk2, topk5, and topk10 are the top 1%, top 2%, top 5% and top 10% weighted examples of the test set, respectively. Since this is the test set (I'm assuming?) it just means that the network has gotten really good at classifying the "easiest" 10% of the examples. Note that for the top 50% (topk50) the performance is still only 77.85%. |
Sorry to disturb you!
Should
base_x
be replaced withbase_y
?w_y = self.third_fc(base_x).view(-1) * torch.exp(self.third_scale)
And What does this function do? (in
tasks.py
)def best_one_sec_moment(mat, winsize=6):
thank you!
The text was updated successfully, but these errors were encountered: