Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for concrete_functions (0.23 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

          destination_sig_map = &revived->signature_def_functions;
    
      for (const auto& id_and_func : objects.concrete_functions) {
        int node_id = id_and_func.first;
        const TFConcreteFunctionRevivalState& func = id_and_func.second;
    
        if (revived->concrete_functions.Find(node_id)) {
          // The function has already been initialized in the destination_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

          }
    
          // Retrieve related function information.
          const std::string& function_name = saved_function.concrete_functions(0);
          const FunctionDef* function_def = function_def_map.at(function_name);
          const SavedConcreteFunction& saved_concrete_func =
              metagraph.object_graph_def().concrete_functions().at(function_name);
          const FunctionSpec& function_spec = saved_function.function_spec();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/fingerprinting.cc

      // Sort `concrete_functions`, which is an unordered map from function names to
      // SavedConcreteFunction, using the suffix UID of the function name. Assumes
      // that the trackable children are listed in a deterministic order during
      // serialization.
      absl::btree_map<int64_t, std::string> uid_to_function_names;
      for (const auto& [name, concrete_function] :
           object_graph_def.concrete_functions()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

        std::unique_ptr<TFConcreteFunction> concrete_function;
        TF_RETURN_IF_ERROR(TFConcreteFunction::Create(/*function_def=*/&function,
                                                      /*captures=*/{},
                                                      /*metadata=*/{},
                                                      /*ctx=*/context,
                                                      /*out=*/&concrete_function));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/internal/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "concrete_function",
        srcs = [
            "concrete_function.cc",
        ],
        hdrs = [
            "//tensorflow/c/experimental/saved_model/public:concrete_function.h",
        ],
        copts = tf_copts(),
        visibility = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:19:06 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

    #include "tensorflow/c/experimental/saved_model/core/tf_saved_model_api.h"
    #include "tensorflow/c/experimental/saved_model/internal/saved_model_api_type.h"
    #include "tensorflow/c/experimental/saved_model/public/concrete_function.h"
    #include "tensorflow/c/experimental/saved_model/public/signature_def_function.h"
    #include "tensorflow/c/experimental/saved_model/public/signature_def_function_metadata.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top