From 77bb97fee518b2004f834b55b551e674a07f12ed Mon Sep 17 00:00:00 2001 From: Anton Chetverikov Date: Thu, 9 Jul 2020 16:48:59 +0300 Subject: [PATCH] SoftPlus operation specification (#1128) * Add SoftPlus operation specification --- docs/ops/activation/SoftPlus_4.md | 49 +++++++++++++++++++++++++++++++ docs/ops/opset4.md | 1 + 2 files changed, 50 insertions(+) create mode 100644 docs/ops/activation/SoftPlus_4.md diff --git a/docs/ops/activation/SoftPlus_4.md b/docs/ops/activation/SoftPlus_4.md new file mode 100644 index 00000000000..ad57f4e0212 --- /dev/null +++ b/docs/ops/activation/SoftPlus_4.md @@ -0,0 +1,49 @@ +## SoftPlus + +**Versioned name**: *SoftPlus-4* + +**Category**: *Activation* + +**Short description**: SoftPlus takes one input tensor and produces output tensor where the softplus function is applied to the tensor elementwise. + +**Detailed description**: For each element from the input tensor calculates corresponding +element in the output tensor with the following formula: + + \f[ + SoftPlus(x) = ln(e^{x} + 1.0) + \f] + +**Attributes**: *SoftPlus* operation has no attributes. + + +**Inputs**: + +* **1**: Multidimensional input tensor of type *T*. **Required**. + +**Outputs**: + +* **1**: The resulting tensor of the same shape and type as input tensor. + +**Types** + +* *T*: arbitrary supported floating point type. + + +**Example** + +```xml + + + + 256 + 56 + + + + + 256 + 56 + + + +``` \ No newline at end of file diff --git a/docs/ops/opset4.md b/docs/ops/opset4.md index 0bbc58dd368..29ddf5156f2 100644 --- a/docs/ops/opset4.md +++ b/docs/ops/opset4.md @@ -125,6 +125,7 @@ declared in `namespace opset4`. * [Sin](arithmetic/Sin_1.md) * [Sinh](arithmetic/Sinh_1.md) * [SoftMax](activation/SoftMax_1.md) +* [SoftPlus](activation/SoftPlus_4.md) * [SpaceToBatch](movement/SpaceToBatch_2.md) * [SpaceToDepth](movement/SpaceToDepth_1.md) * [Split](movement/Split_1.md)