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
Hi, in the main.py in the training loop we are currently using nn.CrossEntropyLoss(), it should take as input the raw logits (not softmaxed probabilities) and targets - https://pytorch.org/docs/stable/generated/torch.nn.CrossEntropyLoss.html if I'm not mistaken.
nn.CrossEntropyLoss()
The text was updated successfully, but these errors were encountered:
Removed the test veryfying softmaxity of output
2d21b03
The model should output raw logits for nn.CrossEntropyLoss() #37
2ff9ad3
hzavadil98
No branches or pull requests
Hi, in the main.py in the training loop we are currently using
nn.CrossEntropyLoss()
, it should take as input the raw logits (not softmaxed probabilities) and targets - https://pytorch.org/docs/stable/generated/torch.nn.CrossEntropyLoss.html if I'm not mistaken.The text was updated successfully, but these errors were encountered: