\brief Set whether average pooling uses as a denominator the overlap area between the window and the unpadded input. If this is not set, the denominator is the overlap between the pooling window and the padded input. Default: true \note On Xavier, DLA supports only inclusive padding and this must be explicitly set to false. \see getAverageCountExcludesPadding()
| 1887 | //! \see getAverageCountExcludesPadding() |
| 1888 | //! |
| 1889 | void setAverageCountExcludesPadding(bool exclusive) noexcept |
| 1890 | { |
| 1891 | mImpl->setAverageCountExcludesPadding(exclusive); |
| 1892 | } |
| 1893 | |
| 1894 | //! |
| 1895 | //! \brief Get whether average pooling uses as a denominator the overlap area between the window |