#pragma once #include #include #include namespace torch { namespace nn { /// Options for the `CosineSimilarity` module. struct TORCH_API CosineSimilarityOptions { /// Dimension where cosine similarity is computed. Default: 1 TORCH_ARG(int64_t, dim) = 1; /// Small value to avoid division by zero. Default: 1e-8 TORCH_ARG(double, eps) = 1e-8; }; // ============================================================================ /// Options for the `PairwiseDistance` module. struct TORCH_API PairwiseDistanceOptions { PairwiseDistanceOptions(double p = 2.0) : p_(p) {} /// The norm degree. Default: 2 TORCH_ARG(double, p); /// Small value to avoid division by zero. Default: 1e-6 TORCH_ARG(double, eps) = 1e-6; /// Determines whether or not to keep the vector dimension. Default: false TORCH_ARG(bool, keepdim) = false; }; } // namespace nn } // namespace torch