TensorFlow报错module 'tensorflow' has no attribute 'xxx'解决办法
原因:TensorFlow2.0版本修改了许多函数名字
tf.sub()更改为tf.subtract()tf.mul()更改为tf.multiply()tf.types.float32更改为tf.float32tf.pact()更改为tf.stact()- tf.Session()更改为tf.compat.v1.Session()
原因:TensorFlow2.0版本修改了许多函数名字
tf.sub()更改为tf.subtract()tf.mul()更改为tf.multiply()tf.types.float32更改为tf.float32tf.pact()更改为tf.stact()