常见激活函数


sigmoid: σ(x)=11+ex\sigma (x) = {1 \over 1+ e^{-x}}

tanh: tanh(x)tanh(x)

ReLu: max(0,x)max(0,x)

Leaky ReLu: max(0.1x,x)max(0.1x,x)

Maxout: max(w1Tx+b1,w2Tx+b2)max(w^T_1 x + b1, w^T _2 x + b2)

ELU: $$