Reputation: 11
I installed talos and it broke my Keras/Tensorflow configuration.
If I run import talos
OR import keras
I get:
ImportError: cannot import name 'tf_utils'
When I installed talos it downgraded my Tensorflow to 1.14 and updated Keras to 2.3.
At the same time I have a Tensorflow-GPU 1.8 (which was not changed), and is what I was running from my virtual environment before.
Upvotes: 1
Views: 1108
Reputation: 1431
Your problem is the Tensorflow-gpu==1.8
. Replace it with Tensorflow-gpu==1.14
and things will work.
Upvotes: 0