-
Notifications
You must be signed in to change notification settings - Fork 194
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
type error #91
Comments
Unfortunately, I ran into the same problem, and solved the issue by downgrading to tensorflow=2.3 |
This is cause by mix usage of tensorflow.python.keras and tensorflow.keras, when i replace all tensorflow.python.keras by tensorflow.keras, it work. |
I got it to work by following @czf1009 advice.
(I believe these can be cloned to a local folder as well)
Where it says "from tensorflow.python import keras" replaced by "from tensorflow import keras" 3)To remove some warnings , I pip installed gast==0.3.3 and abs-py=1.0.0 Hope it helps! |
Thanks everybody, TL;DR
|
The text was updated successfully, but these errors were encountered: