Class PairwiseDistanceImpl#
Defined in File distance.h
Inheritance Relationships#
Base Type#
public torch::nn::Cloneable< PairwiseDistanceImpl >(Template Class Cloneable)
Class Documentation#
-
class PairwiseDistanceImpl : public torch::nn::Cloneable<PairwiseDistanceImpl>#
Returns the batchwise pairwise distance between vectors :math:
v_1, :math:v_2using the p-norm.See https://pytorch.org/docs/main/nn.html#torch.nn.PairwiseDistance to learn about the exact behavior of this module.
See the documentation for
torch::nn::PairwiseDistanceOptionsclass to learn what constructor arguments are supported for this module.Example:
PairwiseDistance model(PairwiseDistanceOptions().p(3).eps(0.5).keepdim(true));
Public Functions
-
explicit PairwiseDistanceImpl(const PairwiseDistanceOptions &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
PairwiseDistancemodule into the givenstream.
-
Tensor forward(const Tensor &input1, const Tensor &input2)#
Public Members
-
PairwiseDistanceOptions options#
The options with which this
Modulewas constructed.
-
explicit PairwiseDistanceImpl(const PairwiseDistanceOptions &options_ = {})#