Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for composite_tensor (0.19 sec)

  1. tensorflow/cc/tools/freeze_saved_model.cc

        tensor_names->insert(coo_sparse.indices_tensor_name());
        tensor_names->insert(coo_sparse.dense_shape_tensor_name());
      } else if (tensor_info.has_composite_tensor()) {
        for (const auto& component : tensor_info.composite_tensor().components()) {
          tensor_names->insert(component.name());
        }
      } else {
        tensor_names->insert(tensor_info.name());
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. RELEASE.md

            of words which may include previously unseen words (the embedding
            vectors for unseen words will be randomly initialized).
    
    *   `tf.Variable`:
    
        *   Added `CompositeTensor` as a baseclass to `ResourceVariable`. This
            allows `tf.Variable`s to be nested in `tf.experimental.ExtensionType`s.
        *   Added a new constructor argument `experimental_enable_variable_lifting`
    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