torch.QuantileOptions
export interface QuantileOptions {
/** Dimension(s) along which to compute the quantile */
dim?: number | number[];
/** Interpolation method for computing quantiles */
interpolation?: 'linear' | 'lower' | 'higher' | 'nearest' | 'midpoint';
/** If true, keeps the reduced dimension with size 1 for broadcasting. */
keepdim?: boolean;
}dim(number | number[])optional- – Dimension(s) along which to compute the quantile
interpolation('linear' | 'lower' | 'higher' | 'nearest' | 'midpoint')optional- – Interpolation method for computing quantiles
keepdim(boolean)optional- – If true, keeps the reduced dimension with size 1 for broadcasting.
Options for quantile operations