torch.nn.functional.PairwiseDistanceFunctionalOptions
export interface PairwiseDistanceFunctionalOptions {
/** Norm degree (default: 2) */
p?: number;
/** Small constant for numerical stability (default: 1e-6) */
eps?: number;
/** If true, keeps the reduced dimension with size 1 (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 with size 1 (default: false)
Options for pairwise_distance functional operation.