在运行WaterGAN的代码时出现:
AttributeError: module 'tensorflow' has no attribute 'mul'
将
eta_d = tf.exp(tf.mul(-1.0,tf.multiply(depth,eta)))
改为:
eta_d = tf.exp(tf.multiply(-1.0,tf.multiply(depth,eta)))
即改:mul->multiply
本文解决在运行WaterGAN代码时遇到的AttributeError,详细介绍了如何将已弃用的'mul'方法替换为'multiply'方法,以确保代码在最新版本的TensorFlow上正确运行。
在运行WaterGAN的代码时出现:
AttributeError: module 'tensorflow' has no attribute 'mul'
将
eta_d = tf.exp(tf.mul(-1.0,tf.multiply(depth,eta)))
改为:
eta_d = tf.exp(tf.multiply(-1.0,tf.multiply(depth,eta)))
即改:mul->multiply
您可能感兴趣的与本文相关的镜像
TensorFlow-v2.15
TensorFlow 是由Google Brain 团队开发的开源机器学习框架,广泛应用于深度学习研究和生产环境。 它提供了一个灵活的平台,用于构建和训练各种机器学习模型
3万+
3075

被折叠的 条评论
为什么被折叠?