openvino.runtime.opset3.lrn

openvino.runtime.opset3.lrn(data: Union[openvino._pyopenvino.Node, int, float, numpy.ndarray], axes: Union[openvino._pyopenvino.Node, int, float, numpy.ndarray], alpha: float = 1, beta: float = 0.5, bias: float = 1, size: int = 5, name: Optional[str] = None) openvino._pyopenvino.Node

Return a node which performs element-wise Local Response Normalization (LRN) operation.

Parameters
  • data – Input data.

  • alpha – A scale factor (usually positive).

  • beta – An exponent.

  • bias – An offset (usually positive) to avoid dividing by 0.

  • size – Width of the 1-D normalization window.

  • name – An optional name of the output node.

Returns

The new node which performs LRN.