Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Squeeze (0.53 sec)

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

    ```
    # 't' is a tensor of shape [1, 2, 1, 3, 1, 1]
    shape(squeeze(t)) ==> [2, 3]
    ```
    
    Or, to remove specific size 1 dimensions:
    
    ```
    # 't' is a tensor of shape [1, 2, 1, 3, 1, 1]
    shape(squeeze(t, [2, 4])) ==> [1, 2, 3, 1]
    ```
      }];
    
      let arguments = (ins
        Arg<TF_Tensor, [{The `input` to squeeze.}]>:$input,
    
    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

        *   `parallel_for`: Add converters for `OneHot`, `LowerBound`, `UpperBound`.
        *   `parallel_for`: add converter for `BroadcastTo`.
        *   Add `pfor` converter for `Squeeze`.
        *   Add `RaggedTensor.placeholder()`.
        *   Add ragged tensor support to `tf.squeeze`.
        *   Update RaggedTensors to support int32 row_splits.
        *   Allow `LinearOperator.solve` to take a `LinearOperator`.
    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