torch.BucketizeOptions
export interface BucketizeOptions {
/** If true, return int32 indices (default true) */
out_int32?: boolean;
/** If true, buckets are (left, right], otherwise [left, right) (default false) */
right?: boolean;
}out_int32(boolean)optional- – If true, return int32 indices (default true)
right(boolean)optional- – If true, buckets are (left, right], otherwise [left, right) (default false)
Options for bucketize operations