Class CELUImpl¶
Defined in File activation.h
Page Contents
Inheritance Relationships¶
Base Type¶
public torch::nn::Cloneable< CELUImpl >
(Template Class Cloneable)
Class Documentation¶
-
class
torch::nn
::
CELUImpl
: public torch::nn::Cloneable<CELUImpl>¶ Applies celu over a given input.
See https://pytorch.org/docs/master/nn.html#torch.nn.CELU to learn about the exact behavior of this module.
See the documentation for
torch::nn::CELUOptions
class to learn what constructor arguments are supported for this module.Example:
CELU model(CELUOptions().alpha(42.42).inplace(true));
Public Functions
-
CELUImpl
(const CELUOptions &options_ = {})¶
-
Tensor
forward
(Tensor input)¶
Public Members
-
CELUOptions
options
¶ The options with which this
Module
was constructed.
-