torch.nn.functional.LPPoolFunctionalOptions
export interface LPPoolFunctionalOptions {
/** Stride of the pooling operation (default: kernel_size) */
stride?: number | number[];
/** If true, will use ceil instead of floor to compute the output shape (default: false) */
ceil_mode?: boolean;
}stride(number | number[])optional- – Stride of the pooling operation (default: kernel_size)
ceil_mode(boolean)optional- – If true, will use ceil instead of floor to compute the output shape (default: false)
Options for lp_pool*d functional operations.