torch.nn.functional.MaxPool1dFunctionalOptions
export interface MaxPool1dFunctionalOptions {
/** Stride of the pooling operation (default: kernel_size) */
stride?: number;
/** Implicit zero padding to be added on both sides (default: 0) */
padding?: number;
/** Dilation for the pooling operation (default: 1) */
dilation?: number;
/** If true, will use ceil instead of floor to compute the output shape (default: false) */
ceil_mode?: boolean;
}stride(number)optional- – Stride of the pooling operation (default: kernel_size)
padding(number)optional- – Implicit zero padding to be added on both sides (default: 0)
dilation(number)optional- – Dilation for the pooling operation (default: 1)
ceil_mode(boolean)optional- – If true, will use ceil instead of floor to compute the output shape (default: false)
Options for max_pool1d functional operation.