Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetSignaturesMap (0.21 sec)

  1. tensorflow/c/experimental/saved_model/core/saved_model_utils.h

    FunctionNameToFunctionDefMap(const FunctionDefLibrary& library);
    
    // Finds the "signatures" object in the object graph, and fills a mapping of
    // each signature's name to the corresponding function's node in the object
    // graph.
    Status GetSignaturesMap(const SavedObjectGraph& saved_objects,
                            gtl::FlatMap<std::string, int>* signatures_map);
    
    // Validates the `saved_function`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 13 04:18:52 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

            " outputs, but the SavedConcreteFunction has ", output_specs.size(),
            " flattened outputs.");
      }
    
      return Status();
    }
    
    }  // namespace
    
    Status GetSignaturesMap(const SavedObjectGraph& saved_objects,
                            gtl::FlatMap<std::string, int>* signatures_map) {
      if (saved_objects.nodes().empty()) {
        return errors::FailedPrecondition("Saved Object Graph was empty.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top