Applies element-wise, \(CELU(x) = max(0,x) + min(0, \alpha * (exp(x \alpha) - 1))\).
nn_module
Calls torch::nn_celu() when trained.
Parameters
alpha::numeric(1)
The alpha value for the ELU formulation. Default: 1.0inplace::logical(1)
Whether to do the operation in-place. Default:FALSE.
Input and Output Channels
One input channel called "input" and one output channel called "output".
For an explanation see PipeOpTorch.
Super classes
mlr3pipelines::PipeOp -> PipeOpTorch -> PipeOpTorchCELU
Methods
PipeOpTorchCELU$new()
Creates a new instance of this R6 class.
Usage
PipeOpTorchCELU$new(id = "nn_celu", param_vals = list())Arguments
id(
character(1))
Identifier of the resulting object.param_vals(
list())
List of hyperparameter settings, overwriting the hyperparameter settings that would otherwise be set during construction.
Examples
# Construct the PipeOp
pipeop = nn("celu")
pipeop
#>
#> ── PipeOp <celu>: not trained ──────────────────────────────────────────────────
#> Values: list()
#>
#> ── Input channels:
#> name train predict
#> <char> <char> <char>
#> input ModelDescriptor Task
#>
#> ── Output channels:
#> name train predict
#> <char> <char> <char>
#> output ModelDescriptor Task
# The available parameters
pipeop$param_set
#> <ParamSet(2)>
#> id class lower upper nlevels default value
#> <char> <char> <num> <num> <num> <list> <list>
#> 1: alpha ParamDbl -Inf Inf Inf 1 [NULL]
#> 2: inplace ParamLgl NA NA 2 FALSE [NULL]