Tensorflow 2.0 – AttributeError: module ‘tensorflow’ has no attribute ‘Session’

According to TF 1:1 Symbols Map, in TF 2.0 you should use tf.compat.v1.Session() instead of tf.Session() https://docs.google.com/spreadsheets/d/1FLFJLzg7WNP6JHODX5q8BDgptKafq_slHpnHVbJIteQ/edit#gid=0 To get TF 1.x like behaviour in TF 2.0 one can run but then one cannot benefit of many improvements made in TF 2.0. For more details please refer to the migration guide https://www.tensorflow.org/guide/migrate

ImportError: cannot import name np_utils

I’m trying to run the following example from keras but I get this error: I’m using Ubuntu and I installed keras with: This question was already asked but there was no answer: Keras: Cannot Import Name np_utils