Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for kObjectGraphProtoKey (0.22 sec)

  1. tensorflow/cc/saved_model/constants.h

    inline constexpr char kSavedModelTrainOpSignatureKey[] =
        "__saved_model_train_op";
    
    // Key in the TensorBundle for the object graph proto.
    inline constexpr char kObjectGraphProtoKey[] = "_CHECKPOINTABLE_OBJECT_GRAPH";
    
    // Filename for the FingerprintDef protocol buffer.
    inline constexpr char kFingerprintFilenamePb[] = "fingerprint.pb";
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 23:02:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libexport/load.cc

            tensorflow::Env::Default(), tf_package.variables_filepath_);
        tensorflow::Tensor object_graph_tensor;
        TF_RETURN_IF_ERROR(tf_package.variable_reader_->Lookup(
            tensorflow::kObjectGraphProtoKey, &object_graph_tensor));
        const auto* object_graph_string =
            reinterpret_cast<const tensorflow::tstring*>(
                object_graph_tensor.tensor_data().data());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 15:16:07 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/bundle_v2.cc

                                           TrackableObjectGraph* object_graph) {
      Tensor object_graph_tensor;
      TF_RETURN_WITH_CONTEXT_IF_ERROR(
          bundle_reader->Lookup(kObjectGraphProtoKey, &object_graph_tensor),
          "SavedModel checkpoint does not contain object graph.");
      if (object_graph_tensor.dtype() != DT_STRING ||
          object_graph_tensor.dims() != 0 ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top