当前位置:  开发笔记 > 编程语言 > 正文

使用Keras的'selu'激活功能时出错

如何解决《使用Keras的'selu'激活功能时出错》经验,为你挑选了1个好方法。

我正在使用带有Tensorflow后端的Keras.当我尝试使用'selu'激活功能时:

model.add(Dense(32, input_shape=(input_length - 1,)))
model.add(Activation('selu'))

我得到的错误是:

ValueError: Unknown activation function:selu

这有什么解决方案吗?



1> Wilmar van O..:

Selu不在您activations.py的keras(很可能因为它是在2017年6月14日,仅在22天前添加).您只需在文件中添加缺少的代码,activations.pyselu在脚本中创建自己的激活.

示例代码

from keras.activations import elu

def selu(x):
    """Scaled Exponential Linear Unit. (Klambauer et al., 2017)
    # Arguments
        x: A tensor or variable to compute the activation function for.
    # References
        - [Self-Normalizing Neural Networks](https://arxiv.org/abs/1706.02515)
    """
    alpha = 1.6732632423543772848170429916717
    scale = 1.0507009873554804934193349852946
    return scale * elu(x, alpha)

model.add(Dense(32, input_shape=(input_length - 1,)), activation=selu)

推荐阅读
雯颜哥_135
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有