Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for concrete_functions (0.43 sec)

  1. tensorflow/cc/saved_model/experimental/public/saved_model_api.h

      // Returns:
      //  If status is not OK, returns nullptr. Otherwise, returns a
      //  tensorflow::cc::ConcreteFunction pointer. The lifetime of this pointer
      //  is bound to SavedModelAPI it was loaded from.
      ConcreteFunction* GetConcreteFunction(const std::string& function_path,
                                            Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/experimental/public/signature_def_function.h

    // https://github.com/tensorflow/tensorflow/blob/26c4ee0c833e74f94d0102d8b005c41a28b44445/tensorflow/cc/saved_model/loader.h#L96-L108
    // 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.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/experimental/public/BUILD

        # This is intentionally public
        default_visibility = [
            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "concrete_function",
        hdrs = [
            "concrete_function.h",
        ],
        deps = [
            ":function_metadata",
            "//tensorflow/c/eager:c_api",
            "//tensorflow/c/experimental/saved_model/public:concrete_function",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/public/BUILD

        deps = [
            ":concrete_function",
            ":concrete_function_list",
            ":function_metadata",
            ":saved_model_api",
            ":signature_def_function",
            ":signature_def_function_metadata",
            ":signature_def_param",
            ":signature_def_param_list",
            ":tensor_spec",
        ],
    )
    
    alias(
        name = "concrete_function",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/function.cc

          t->Unref();
        }
      });
      return Unflatten(outs, concrete_fn.output_signature);
    }
    
    StatusOr<Function::ConcreteFunction> Function::GetConcreteFunction(
        TaggedValue value) const {
      if (concrete_fns_.empty()) {
        return tensorflow::errors::FailedPrecondition(
            "No registered ConcreteFunctions.");
      }
      for (auto& spec : concrete_fns_) {
        if (Match(spec.input_signature, value)) {
          return spec;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/BUILD

            "//tensorflow/c:__subpackages__",
            "//tensorflow/c/experimental/saved_model/internal:__pkg__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "concrete_function",
        hdrs = [
            "concrete_function.h",
        ],
        deps = [
            ":function_metadata",
            "//tensorflow/c/eager:immediate_execution_operation",
            "//tensorflow/c/eager:immediate_execution_tensor_handle",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/cc/experimental/libtf/function.h

                                                TaggedValue) const;
    
     private:
      struct ConcreteFunction {
        tensorflow::AbstractFunctionPtr trace;
        TaggedValue input_signature;
        TaggedValue output_signature;
      };
      tensorflow::StatusOr<ConcreteFunction> GetConcreteFunction(TaggedValue) const;
      std::vector<ConcreteFunction> concrete_fns_;
    };
    
    }  // namespace libtf
    }  // namespace tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

              min_consumer: 1
            }
          }
        }
        nodes {
          children {
            node_id: 3
            local_name: "trace_0"
          }
          function {
            concrete_functions: "__inference_<lambda>_18"
            function_spec {
              fullargspec {
                named_tuple_value {
                  name: "FullArgSpec"
                  values {
                    key: "args"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/public/concrete_function_list.h

    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_PUBLIC_CONCRETE_FUNCTION_LIST_H_
    
    #include <stddef.h>
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/experimental/saved_model/public/concrete_function.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type that is acts like a list of TF_ConcreteFunction pointers.
    typedef struct TF_ConcreteFunctionList TF_ConcreteFunctionList;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 13 17:52:37 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top