Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Svd (0.03 sec)

  1. RELEASE.md

    *   Introducing `core/util/tensor_bundle` module: a module to efficiently
        serialize/deserialize tensors to disk. Will be used in TF's new checkpoint
        format.
    *   Added tf.svd for computing the singular value decomposition (SVD) of dense
        matrices or batches of matrices (CPU only).
    *   Added gradients for eigenvalues and eigenvectors computed using
        `self_adjoint_eig` or `self_adjoint_eigvals`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

          "BoolAttr":$keep_dims)>
      ];
    
      let hasFolder = 1;
    }
    
    def TF_SvdOp : TF_Op<"Svd", [Pure]> {
      let summary = [{
    Computes the singular value decompositions of one or more matrices.
      }];
    
      let description = [{
    Computes the SVD of each inner matrix in `input` such that
    `input[..., :, :] = u[..., :, :] * diag(s[..., :, :]) * transpose(v[..., :, :])`
    
    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