TensorFlow报错module 'tensorflow' has no attribute 'xxx'解决办法

原因:TensorFlow2.0版本修改了许多函数名字

  • tf.sub()更改为tf.subtract()
  • tf.mul()更改为tf.multiply()
  • tf.types.float32更改为tf.float32
  • tf.pact()更改为tf.stact()
  • tf.Session()更改为tf.compat.v1.Session()

猜你喜欢

转载自www.cnblogs.com/dyc99/p/12547209.html