-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
support newer versions of tensorflow (2.1+) #3830
Conversation
Apparently 2.2.0rc1 is not > 2.0.0 |
@@ -61,7 +62,7 @@ def run(self): | |||
"Pillow>=4.2.1", | |||
"protobuf>=3.6", | |||
"pyyaml", | |||
"tensorflow>=1.7,<2.1", | |||
"tensorflow>=1.7,<3.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did have to add six>=1.12.0
to setup.py for tf>2.1.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, I'm not sure what to do about this. pip should be able to figure it out; it's not really our requirement, just a transitive one.
* increase gail visual ppo steps * increase to 2000 * tune steps down to 750
Proposed change(s)
Tests with tensorflow 2.1 and 2.2 release candidates look good. We need to support 2.2 in order to support python3.8 as well.
This PR raises the tensorflow version range. I originally intended to test python3.8 here too, but there were some conflicts with onnx that I'll have to try to resolve in another PR.
Useful links (Github issues, JIRA tickets, ML-Agents forum threads etc.)
tensorflow/tensorflow#33374
Types of change(s)
Checklist
Other comments