–
linear.nonlinearity:
identity function
sigmoid.nonlinearity:
logistic function
rectify.nonlinearity:
max(0, x)
leaky.rectify.nonlinearity:
ifelse(x>0, x, x * .01)
elu.nonlinearity:
ifelse(x > 0, x, exp(x) - 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.