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
test.py
NeuralNet
nn
torch.empty
torch
torch.set_grad_enabled( False )
The text was updated successfully, but these errors were encountered:
lbrgt
No branches or pull requests
Proposed changes
test.py
does not initialize Adam correctly (missing arguments).test.py
, instance of DLModule should not be named nn but model instead. TheNeuralNet
module could be renamednn
to remain consistent with PyTorch.torch.empty
instead oftorch
to avoid name conflicts with the framework. This is required!torch.set_grad_enabled( False )
to ensure that we are not using builtin torch functionalities.The text was updated successfully, but these errors were encountered: