openvino.runtime.opset4.scatter_update#
- openvino.runtime.opset4.scatter_update(data: Node, indices: Node | int | float | ndarray, updates: Node | int | float | ndarray, axis: Node | int | float | ndarray, name: str | None = None) Node #
Return a node which produces a ScatterUpdate operation.
ScatterUpdate sets new values to slices from data addressed by indices.
- Parameters:
data – The input tensor to be updated.
indices – The tensor with indexes which will be updated.
updates – The tensor with update values.
axis – The axis at which elements will be updated.
- Returns:
ScatterUpdate node