-
Notifications
You must be signed in to change notification settings - Fork 64
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
Task importance analysis #37
Comments
why not ?
|
Thanks for the comment. Just to make sure we are on the same page, your question is why we used a different task importance weight than Niu et al? We tried the method in Niu et al., and in our case it made the performance worse for both CORAL and the Niu et al. ordinal CNN. So, we tried different methods for task importance and found that the one we included worked best. |
Thanks Reply. I still have some questions, the ordinal CNN usually refers to which paper? Thanks again for your reply! |
Ordinal CNN is the method by Niu et al. 2016 you mentioned at the top of this thread ("Ordinal Regression with Multiple Output CNN for Age Estimation"). Sure. We have a task importance discussion in an earlier arxiv version of the paper but decided to remove it from the final paper because it was not super essential. You can find it here: https://arxiv.org/pdf/1901.07884v4.pdf |
Thanks for reply ! |
`def task_importance_weights(label_array):
uniq = torch.unique(label_array)
num_examples = label_array.size(0)
IF this code are diffrent from origin paper"Ordinal Regression with Multiple Output CNN for Age Estimation"
The text was updated successfully, but these errors were encountered: