Typedef torch::nn::functional::CELUFuncOptions¶
Defined in File activation.h
Typedef Documentation¶
-
using torch::nn::functional::CELUFuncOptions = CELUOptions¶
Options for
torch::nn::functional::celu
.See the documentation for
torch::nn::CELUOptions
class to learn what arguments are supported.Example:
namespace F = torch::nn::functional; F::celu(x, F::CELUFuncOptions().alpha(0.42).inplace(true));