softplus | R Documentation |
Softplus Activation Function
softplus(x)
x |
numeric vector |
numeric vector
Matthew L. Fidler
Other Activation Functions:
ELU()
,
GELU()
,
PReLU()
,
ReLU()
,
SELU()
,
Swish()
,
dELU()
,
dGELU()
,
dPReLU()
,
dReLU()
,
dSELU()
,
dSwish()
,
dlReLU()
,
dsoftplus()
,
lReLU()
softplus(c(-1, 0, 1, 2))
# You can use rxode2 too:
r <- rxode2({
s <- softplus(time)
})
e <- et(c(-1, 0, 1, 2))
rxSolve(r, e)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.