ParametricSoftplus#

ParametricSoftplus - 1#

Version

This version of the operator has been available since version 1.

Summary

ParametricSoftplus takes one input data (Tensor<T>) and produces one output data (Tensor<T>) where the softplus function, y = alpha * ln(exp(beta * x) + 1), is applied to the tensor elementwise.

Attributes

  • alpha: Value of alpha Default value is ?.

  • beta: Value of beta Default value is ?.

Inputs

  • X (heterogeneous) - T: 1D input tensor

Outputs

  • Y (heterogeneous) - T: 1D input tensor

Examples