hxtorch.perceptron.nn.ReLU
-
class
hxtorch.perceptron.nn.
ReLU
(mock: bool = False) Bases:
hxtorch.perceptron.nn.Layer
,torch.nn.modules.activation.ReLU
Applies a rectified linear unit to the input.
-
__init__
(mock: bool = False) - Parameters
mock – Enable mock mode
Methods
__init__
([mock])- param mock
Enable mock mode
forward
(input)Defines the computation performed at every call.
Attributes
-
forward
(input: torch.Tensor) → torch.Tensor Defines the computation performed at every call.
Should be overridden by all subclasses.
Note
Although the recipe for forward pass needs to be defined within this function, one should call the
Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.
-
inplace
: bool
-