Skip to content

Instantly share code, notes, and snippets.

@iwiwi
Created June 11, 2017 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iwiwi/c2ed72c21058f3982864bdf7e7e5082e to your computer and use it in GitHub Desktop.
Save iwiwi/c2ed72c21058f3982864bdf7e7e5082e to your computer and use it in GitHub Desktop.
import chainer.functions as F
def selu(x, alpha=1.6732632423543772848170429916717, scale=1.0507009873554804934193349852946):
return scale * F.elu(x, alpha=alpha)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment