[原始碼]
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