NVIDIA / caffe

Caffe: a fast open framework for deep learning.
http://caffe.berkeleyvision.org/
Other
672 stars 263 forks source link

Update elu_layer.cu #565

Closed cvhuang closed 5 years ago

cvhuang commented 5 years ago

In the paper Self-Normalizing Neural Networks, the SELU function is given by lambda∗(max(0,x)+min(0,alpha∗(exp(x)−1))) not max(0,x)+min(0,alpha∗(exp(x)−1)). So is the cpu version. Is that right : )

drnikolaev commented 5 years ago

Fixed in 0.17.3, thank you.