Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetVariableCheckpointKey (0.28 sec)

  1. tensorflow/cc/experimental/libexport/load.cc

      for (const auto& node : nodes) {
        tf_package.graph_def_nodes_by_name_[node.name()] = &node;
      }
      return tf_package;
    }
    
    tensorflow::StatusOr<std::string> TFPackage::GetVariableCheckpointKey(
        int index) {
      // TODO(danielellis): make sure valid index
      const auto& trackable_object = trackable_object_graph_.nodes(index);
      const TrackableObjectGraph::TrackableObject::SerializedTensor*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 15:16:07 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libexport/load.h

      // shape / slice information allow RestoreV2 to look up a variable's value in
      // the SavedModel and restore it into a tensor.
      tensorflow::StatusOr<std::string> GetVariableCheckpointKey(int index);
    
      // Retrieves the object graph from the SavedModel.
      //
      // For now, we're returning the object graph directly (i.e. the parsed proto)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top