Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tensor_scatter_nd_max (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    tensor and updates according to the indices.
    
    >>> tensor = [0, 0, 0, 0, 0, 0, 0, 0]
    >>> indices = [[1], [4], [5]]
    >>> updates = [1, -1, 1]
    >>> tf.tensor_scatter_nd_max(tensor, indices, updates).numpy()
    array([0, 1, 0, 0, 0, 1, 0, 0], dtype=int32)
    
    Refer to `tf.tensor_scatter_nd_update` for more details.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top