Typedef torch::nn::functional::AdaptiveAvgPool2dFuncOptions¶
Defined in File pooling.h
Typedef Documentation¶
-
using torch::nn::functional::AdaptiveAvgPool2dFuncOptions = AdaptiveAvgPool2dOptions¶
Options for
torch::nn::functional::adaptive_avg_pool2d
.See the documentation for
torch::nn::AdaptiveAvgPool2dOptions
class to learn what arguments are supported.Example:
namespace F = torch::nn::functional; F::adaptive_avg_pool2d(x, F::AdaptiveAvgPool2dFuncOptions(3));