Files
openvino/docs/ops/activation/Exp_1.md
2023-05-05 10:17:05 +02:00

1.1 KiB

Exp

@sphinxdirective

Versioned name: Exp-1

Category: Activation function

Short description: Exponential element-wise activation function.

Detailed description

Exp performs element-wise exponential activation function on a given input tensor. The mathematical formula is as follows:

.. math::

exp(x) = e^{x}

Attributes: Exp operation has no attributes.

Inputs

  • 1: A tensor of type T and arbitrary shape. Required.

Outputs

  • 1: The result of element-wise Exp function applied to the input tensor. A tensor of type T and the same shape as input tensor.

Types

  • T: arbitrary supported floating-point type.

Example

.. code-block:: cpp

<layer ... type="Exp"> 1 256 1 256

@endsphinxdirective