Skip to content
New issue

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

Use tensorflow v1 compatible optimizers #15

Closed
simonangerbauer opened this issue May 10, 2023 · 0 comments · Fixed by #16
Closed

Use tensorflow v1 compatible optimizers #15

simonangerbauer opened this issue May 10, 2023 · 0 comments · Fixed by #16

Comments

@simonangerbauer
Copy link

All tests using tensorflow are still using the tensorflow v1 compatibility api.

The optimizers currently in use (tensorflow.optimizers.AdaDelta and tensorflow.optimizers.SGD) only support tensorflow 2.x. The 1.x compatible versions have been moved to tensorflow.optimizers.legacy. See tensorflow 2.11.0 release notes.

Ideally, we would upgrade everything to tensorflow 2.x, but that seems too much work for now.
To make the tests run successfully it should be sufficient to use the 1.x compatible versions of AdaDelta and SGD.

Subtask of #4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant