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
train_simple_network
Learning rate (named parameter lr) is ignored inside the train_simple_network function's body. Instead, learning rate is hardcoded to 0.001 in line:
lr
Inside-Deep-Learning/idlmam.py
Line 123 in bc4dccf
The text was updated successfully, but these errors were encountered:
EdwardRaff#8 Proper use of lr parameter
a2caa73
Use `lr` parameter provided to `train_simple_network(...)` when creating an optimizer
No branches or pull requests
Learning rate (named parameter
lr
) is ignored inside thetrain_simple_network
function's body.Instead, learning rate is hardcoded to 0.001 in line:
Inside-Deep-Learning/idlmam.py
Line 123 in bc4dccf
Solution: pass
lr
to the created optimizerThe text was updated successfully, but these errors were encountered: