Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ValidateSingleConcreteFunction (0.35 sec)

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

    // graph.
    Status GetSignaturesMap(const SavedObjectGraph& saved_objects,
                            gtl::FlatMap<std::string, int>* signatures_map);
    
    // Validates the `saved_function`.
    Status ValidateSingleConcreteFunction(const SavedFunction& saved_function);
    
    // Walks through the SavedObjectGraph in metagraph, and restores all nodes
    // (except "UserDefinedObjects") with their corresponding type in
    // "PartiallyRevivedObjects".
    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

      }
    
      for (const auto& child : signatures->children()) {
        (*signatures_map)[child.local_name()] = child.node_id();
      }
      return Status();
    }
    
    Status ValidateSingleConcreteFunction(const SavedFunction& saved_function) {
      // We only allow loading functions that have an annotated input signature,
      // which means there is 1:1 correspondence between tf.function
    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