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
In recent tensorflow versions, they changes the lr property to learning_rate.
lr
learning_rate
https://github.com/keras-team/keras/blob/f6c4ac55692c132cd16211f4877fac6dbeead749/keras/src/optimizers/base_optimizer.py#L510-L542
I have gotten it to work with version 2.17 by changing likes such as:
2.17
CLR/clr_callback.py
Line 119 in 968cf5a
to:
self.model.optimizer.learning_rate = self.clr()
I will be making a PR with these changes shortly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In recent tensorflow versions, they changes the
lr
property tolearning_rate
.https://github.com/keras-team/keras/blob/f6c4ac55692c132cd16211f4877fac6dbeead749/keras/src/optimizers/base_optimizer.py#L510-L542
I have gotten it to work with version
2.17
by changing likes such as:CLR/clr_callback.py
Line 119 in 968cf5a
to:
I will be making a PR with these changes shortly.
The text was updated successfully, but these errors were encountered: