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
Hello,
Congratulation for this great work. I have a question regarding the loss function from SWAV.
def cross_entropy_loss(q, p): return torch.mean(torch.sum(q * F.log_softmax(p, dim=1), dim=1))
That F.log_softmax will return a negative number. Should it be -F.log_softmax(p, dim=1)?
F.log_softmax
-F.log_softmax(p, dim=1)
Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Congratulation for this great work. I have a question regarding the loss function from SWAV.
That
F.log_softmax
will return a negative number. Should it be-F.log_softmax(p, dim=1)
?Thank you.
The text was updated successfully, but these errors were encountered: