openvino.runtime.opset9.lrn#

openvino.runtime.opset9.lrn(data: Node | int | float | ndarray, axes: Node | int | float | ndarray, alpha: float = 1, beta: float = 0.5, bias: float = 1, size: int = 5, name: str | None = None) 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.