diff --git a/docs/OV_Runtime_UG/Operations_specifications.md b/docs/OV_Runtime_UG/Operations_specifications.md index 264b0e68982..e7366483166 100644 --- a/docs/OV_Runtime_UG/Operations_specifications.md +++ b/docs/OV_Runtime_UG/Operations_specifications.md @@ -177,6 +177,7 @@ openvino_docs_ops_activation_SoftMax_1 openvino_docs_ops_activation_SoftMax_8 openvino_docs_ops_activation_SoftPlus_4 + openvino_docs_ops_activation_SoftSign_9 openvino_docs_ops_movement_SpaceToBatch_2 openvino_docs_ops_movement_SpaceToDepth_1 openvino_docs_ops_movement_Split_1 diff --git a/docs/ops/activation/SoftSign_9.md b/docs/ops/activation/SoftSign_9.md new file mode 100644 index 00000000000..4b0b2a9d715 --- /dev/null +++ b/docs/ops/activation/SoftSign_9.md @@ -0,0 +1,48 @@ +# SoftSign {#openvino_docs_ops_activation_SoftSign_9} + +**Versioned name**: *SoftSign-9* + +**Category**: *Activation function* + +**Short description**: *SoftSign* performs element-wise activation on a given input tensor. + +**Detailed description**: + +*SoftSign* operation is introduced in this [article](https://arxiv.org/abs/2010.09458). + +*SoftSign Activation Function* is a neuron activation function based on the mathematical function: + +\f[ +SoftSign(x) = \frac{x}{1+|x|} +\f] + +**Inputs**: + +* **1**: `data`. Input tensor of type *T* + +**Outputs**: + +* **1**: The resulting tensor of the same shape and type as the 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/opset9.md b/docs/ops/opset9.md index c56abd7f480..803fd4647bc 100644 --- a/docs/ops/opset9.md +++ b/docs/ops/opset9.md @@ -161,6 +161,7 @@ declared in `namespace opset9`. * [Slice](movement/Slice_8.md) * [SoftMax](activation/SoftMax_8.md) * [SoftPlus](activation/SoftPlus_4.md) +* [SoftSign](activation/SoftSign_9.md) * [SpaceToBatch](movement/SpaceToBatch_2.md) * [SpaceToDepth](movement/SpaceToDepth_1.md) * [Split](movement/Split_1.md)