Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for signature_def_functions (0.3 sec)

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

      gtl::FlatMap<int, std::unique_ptr<Constant>> constants;
      gtl::FlatMap<int, TFConcreteFunctionRevivalState> concrete_functions;
      gtl::FlatMap<int, TFSignatureDefFunctionRevivalState> signature_def_functions;
      gtl::FlatMap<int, RestoredResourceRevivalState> restored_resources;
      gtl::FlatMap<std::string, int> signatures_map;
    
      Status Build(ImmediateExecutionContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 23:21:36 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

                                " was found");
      }
      int node = signatures_iter->second;
    
      auto function_iter = revived_objects_.signature_def_functions.find(node);
      if (function_iter == revived_objects_.signature_def_functions.end()) {
        return errors::Internal(
            "Unable to find SignatureDefFunction associated with key ",
            signature_def_key, " despite key being valid.");
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/revived_objects.h

      gtl::FlatMap<int, std::unique_ptr<Asset>> assets;
      gtl::FlatMap<int, std::unique_ptr<Constant>> constants;
      gtl::FlatMap<int, std::unique_ptr<TFSignatureDefFunction>>
          signature_def_functions;
      RevivedObjectContainer<TFConcreteFunction> concrete_functions;
      gtl::FlatMap<int, RestoredResource> restored_resources;
      gtl::FlatMap<std::string, int> signatures_map;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 05 23:10:04 UTC 2020
    - 4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

                                  RevivedObjects* revived) {
      gtl::FlatMap<int, std::unique_ptr<TFSignatureDefFunction>>*
          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;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

            func_revival_state.fdef = function_def;
            func_revival_state.saved_concrete_func = &saved_concrete_func;
            func_revival_state.signature_key = reverse_signature_iter->second;
            objects->signature_def_functions[i] = std::move(func_revival_state);
          } else {
            TFConcreteFunctionRevivalState func_revival_state;
            func_revival_state.node_id = i;
            func_revival_state.fdef = function_def;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/experimental/public/signature_def_function.h

    // SignatureDefFunctions have different semantics from regular TF2
    // ConcreteFunctions, and are mainly intended provide a serving-friendly
    // transition point from the TF1 Session API.
    // First, SignatureDefFunctions have different calling conventions.
    // SignatureDefFunctions' inputs and outputs are constrained to **flattened
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/signature_def_function.h

    namespace tensorflow {
    
    // See tensorflow/cc/experimental/saved_model/public/signature_def_function.h
    // for SignatureDefFunction's intended user-facing semantics.
    // This class is the "implementation" C++ part of the C++/C/C++ sandwich for
    // a SignatureDefFunction.
    // Note(bmzhao): Implementation-wise, SignatureDefFunctions are always saved as
    // a "BareConcreteFunction", w/o a FunctionSpec, rather than a SavedFunction:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/internal/signature_def_function.cc

    #include "tensorflow/c/experimental/saved_model/public/signature_def_function.h"
    
    #include "absl/types/span.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/immediate_execution_operation.h"
    #include "tensorflow/c/eager/tfe_op_internal.h"
    #include "tensorflow/c/eager/tfe_tensorhandle_internal.h"
    #include "tensorflow/c/experimental/saved_model/core/signature_def_function.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function.h

    // from the TFRT implementation). The user-facing API of SignatureDefFunctions
    // and their semantic differences from ConcreteFunction are described here:
    // https://github.com/tensorflow/tensorflow/blob/e2db60c9d9598ebae0b7741587ce6f5d473584d9/tensorflow/cc/saved_model/experimental/public/signature_def_function.h#L30-L59
    // Additional implementation notes are available here:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/public/signature_def_function.h

    Brian Zhao <******@****.***> 1597704969 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.1K bytes
    - Viewed (0)
Back to top