We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey everyone,
first of all, thanks for your implementation the following formula from the paper "Auxiliary Tasks in Multi-task Learning"
was implemented by:
loss_sum += 0.5 / (self.params[i] ** 2) * loss + torch.log(1 + self.params[i] ** 2)
but imo this is not exactly true, since 0.5 / sigma^2 is not the same as 1/(2*sigma^2) am I right or do i oversee something here?
Thanks for feedback
The text was updated successfully, but these errors were encountered:
1/(2*sigma^2)= 1/2 (1/sigma^2)=0.5(1/sigma^2) = 0.5/(sigma^2)
Sorry, something went wrong.
No branches or pull requests
Hey everyone,
first of all, thanks for your implementation
the following formula from the paper "Auxiliary Tasks in Multi-task Learning"
was implemented by:
but imo this is not exactly true, since 0.5 / sigma^2 is not the same as 1/(2*sigma^2) am I right or do i oversee something here?
Thanks for feedback
The text was updated successfully, but these errors were encountered: