torch.nn.functional.AvgPool1dFunctionalOptions
export interface AvgPool1dFunctionalOptions {
/** Stride of the pooling operation (default: kernel_size) */
stride?: number;
/** Implicit zero padding to be added on both sides (default: 0) */
padding?: number;
/** If true, will use ceil instead of floor to compute the output shape (default: false) */
ceil_mode?: boolean;
/** If true, will include the zero-padding in the averaging calculation (default: true) */
count_include_pad?: 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)
ceil_mode(boolean)optional- – If true, will use ceil instead of floor to compute the output shape (default: false)
count_include_pad(boolean)optional- – If true, will include the zero-padding in the averaging calculation (default: true)
Options for avg_pool1d functional operation.