create graph for TensorFlow only works with numpy==1.19 #5977
drbonis
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This error appears when you try to create a new Graph (with create_graph.py for example) an is due to numpy >= 1.20 not supported by TensorFlow 1.15
To solve the problem just force your numpy version to 1.19 for example with:
pip install numpy==1.19
error:
Beta Was this translation helpful? Give feedback.
All reactions