Class ThresholdImpl¶
Defined in File activation.h
Page Contents
Inheritance Relationships¶
Base Type¶
public torch::nn::Cloneable< ThresholdImpl >
(Template Class Cloneable)
Class Documentation¶
-
class ThresholdImpl : public torch::nn::Cloneable<ThresholdImpl>¶
Applies the Threshold function element-wise.
See https://pytorch.org/docs/main/nn.html#torch.nn.Threshold to learn about the exact behavior of this module.
See the documentation for
torch::nn::ThresholdOptions
class to learn what constructor arguments are supported for this module.Example:
Threshold model(ThresholdOptions(42.42, 24.24).inplace(true));
Public Functions
-
inline ThresholdImpl(double threshold, double value)¶
-
explicit ThresholdImpl(const ThresholdOptions &options_)¶
-
Tensor forward(Tensor input)¶
Public Members
-
ThresholdOptions options¶
The options with which this
Module
was constructed.
-
inline ThresholdImpl(double threshold, double value)¶