Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NOT_EQUAL (0.1 sec)

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

    ```python
        # Apply function (increments x_i) on elements for which a certain condition
        # apply (x_i != -1 in this example).
        x=tf.constant([0.1, -1., 5.2, 4.3, -1., 7.4])
        condition_mask=tf.not_equal(x,tf.constant(-1.))
        partitioned_data = tf.dynamic_partition(
            x, tf.cast(condition_mask, tf.int32) , 2)
        partitioned_data[1] = partitioned_data[1] + 1.0
        condition_indices = tf.dynamic_partition(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. RELEASE.md

            `tf.floor`, `tf.greater`, `tf.greater_equal`, `tf.less`,
            `tf.less_equal`, `tf.log`, `tf.logp1`, `tf.logical_and`,
            `tf.logical_not`, `tf.logical_or`, `tf.maximum`, `tf.minimum`,
            `tf.not_equal`, `tf.sin`, `tf.sinh`, `tf.tan`
        *   Deprecate `tf.data.Dataset.shard`.
        *   Deprecate `saved_model.loader.load` which is replaced by
            `saved_model.load` and `saved_model.main_op`, which will be replaced by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top