openvino.runtime.opset4.scatter_nd_update#
- openvino.runtime.opset4.scatter_nd_update(data: Node | int | float | ndarray, indices: Node | int | float | ndarray, updates: Node | int | float | ndarray, name: str | None = None) Node #
Return a node which performs ScatterNDUpdate.
- Parameters:
data – Node input representing the tensor to be updated.
indices – Node input representing the indices at which updates will be applied.
updates – Node input representing the updates to be applied.
name – Optional name for the output node.
- Returns:
New node performing the ScatterNDUpdate.