Rate this Page

Class PairwiseDistanceImpl#

Inheritance Relationships#

Base Type#

Class Documentation#

class PairwiseDistanceImpl : public torch::nn::Cloneable<PairwiseDistanceImpl>#

Returns the batchwise pairwise distance between vectors :math:v_1, :math:v_2 using 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::PairwiseDistanceOptions class 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 PairwiseDistance module into the given stream.

Tensor forward(const Tensor &input1, const Tensor &input2)#

Public Members

PairwiseDistanceOptions options#

The options with which this Module was constructed.