torch.nn.PairwiseDistanceOptions
export interface PairwiseDistanceOptions {
/** Norm degree. Default: 2 */
p?: number;
/** Small constant for numerical stability. Default: 1e-6 */
eps?: number;
/** If true, keeps the reduced dimension. Default: false */
keepdim?: boolean;
}p(number)optional- – Norm degree. Default: 2
eps(number)optional- – Small constant for numerical stability. Default: 1e-6
keepdim(boolean)optional- – If true, keeps the reduced dimension. Default: false
Options for PairwiseDistance