Python报错-AttributeError: module ‘tensorflow‘ has no attribute ‘global_variables_initializer‘的解决方法
一、报错截图:二、报错原因:TensorFlow2.0及以上版本没有global_variables_initializer这个属性三、解决方法:在代码里添加下面这行代码tf.compat.v1.disable_eager_execution()原先的:init = tf.global_variables_initializer()修改为:init = tf.compat.v1.global_va
·
所有评论(0)