AttributeError: module 'tensorflow.python.ops.nn' has no attribute 'leaky_relu'非

参考:https://blog.csdn.net/wm6274/article/details/73335858
今天跑人脸融合代码时居然发现自己的tensorflow版本太高了,容我先伤心一会,实在是不想回退版本啊,好了不多扯了,进入正题。由于版本问题出现以下报错。
AttributeError: module 'tensorflow.python.ops.nn' has no attribute 'leaky_relu'非
正巧我在https://blog.csdn.net/wm6274/article/details/73335858这个人的文章上看到他从github上转载了 LeakyRelu函数的实现方法,那么既然缺少该函数,我们就给它补上。
第一步:
点击报错信息,进入缺少改函数的文件
AttributeError: module 'tensorflow.python.ops.nn' has no attribute 'leaky_relu'非
LeakyReluAttributeError: module 'tensorflow.python.ops.nn' has no attribute 'leaky_relu'非
添加
import tensorflow as tf
def LeakyRelu(x, leak=0.2, name=“LeakyRelu”):
with tf.variable_scope(name):
f1 = 0.5 * (1 + leak)
f2 = 0.5 * (1 - leak)
return f1 * x + f2 * tf.abs(x)
然后修改x = tf.nn.leaky_relu(x, alpha)修改为x = LeakyRelu(x, alpha)

上一篇:阿里云服务器Ubuntu18.04上安装MongoDB Ops Manager


下一篇:关于IP选项