参考:https://blog.csdn.net/wm6274/article/details/73335858
今天跑人脸融合代码时居然发现自己的tensorflow版本太高了,容我先伤心一会,实在是不想回退版本啊,好了不多扯了,进入正题。由于版本问题出现以下报错。
正巧我在https://blog.csdn.net/wm6274/article/details/73335858这个人的文章上看到他从github上转载了 LeakyRelu函数的实现方法,那么既然缺少该函数,我们就给它补上。
第一步:
点击报错信息,进入缺少改函数的文件
LeakyRelu
添加
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)
相关文章
- 07-25AttributeError: module 'socket' has no attribute 'SO_REUSEPORT'
- 07-25完美解决AttributeError: module 'scipy.misc' has no attribute 'imread'报错问题
- 07-25AttributeError: module 'scipy.misc' has no attribute 'imread'
- 07-25python文件名不要跟模块名相同,报错AttributeError: 'module' object has no attribute 'Differ'
- 07-25Pycharm 报错 AttributeError: module 'pip' has no attribute 'main'
- 07-25安装pandas报错(AttributeError: 'module' object has no attribute 'main')
- 07-25AttributeError: module 'time' has no attribute 'clock'
- 07-25AttributeError: module 'tensorflow._api.v2.image' has no attribute 'resize_images
- 07-25AttributeError: module 'DBBase' has no attribute 'DBBase'
- 07-25【问题解决方案】AttributeError: module 'pygal' has no attribute 'Worldmap'