Struct KLDivLossImpl¶
Defined in File loss.h
Page Contents
Inheritance Relationships¶
Base Type¶
public torch::nn::Cloneable< KLDivLossImpl >
(Template Class Cloneable)
Struct Documentation¶
-
struct KLDivLossImpl : public torch::nn::Cloneable<KLDivLossImpl>¶
The Kullback-Leibler divergence loss measure See https://pytorch.org/docs/main/nn.html#torch.nn.KLDivLoss to learn about the exact behavior of this module.
See the documentation for
torch::nn::KLDivLossOptions
class to learn what constructor arguments are supported for this module.Example:
KLDivLoss model(KLDivLossOptions().reduction(torch::kNone));
Public Functions
-
explicit KLDivLossImpl(KLDivLossOptions options_ = {})¶
-
virtual void reset() override¶
reset()
must perform initialization of all members with reference semantics, most importantly parameters, buffers and submodules.
-
virtual void pretty_print(std::ostream &stream) const override¶
Pretty prints the
KLDivLoss
module into the givenstream
.
-
Tensor forward(const Tensor &input, const Tensor &target)¶
Public Members
-
KLDivLossOptions options¶
The options with which this
Module
was constructed.
-
explicit KLDivLossImpl(KLDivLossOptions options_ = {})¶