openvino.runtime.opset5.gelu#
- openvino.runtime.opset5.gelu(node: Node | int | float | ndarray, name: str | None = None) Node #
Perform Gaussian Error Linear Unit operation element-wise on data from input node.
Computes GELU function:
f[ f(x) = 0.5cdot xcdot(1 + erf( dfrac{x}{sqrt{2}}) f]
For more information refer to [Gaussian Error Linear Unit (GELU)](https://arxiv.org/pdf/1606.08415.pdf>)
- Parameters:
node – Input tensor. One of: input node, array or scalar.
name – Optional output node name.
- Returns:
The new node performing a GELU operation on its input data element-wise.