[源代码]
ELU
keras.layers.ELU(alpha=1.0, **kwargs)
将指数线性单元函数应用于输出。
公式
f(x) = alpha * (exp(x) - 1.) for x < 0 f(x) = x for x >= 0
参数
1.0
name
dtype