Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for concrete_functions (0.2 sec)

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

    // provided inputs automatically.
    // Note(bmzhao): This class is mainly intended to house low-level reusable
    // function logic between SignatureDefFunction and ConcreteFunction, which
    // present higher level interfaces. This type does *not* hold any "function
    // metadata".
    class FlatTensorFunction {
     public:
      // Factory for creating a FlatTensorFunction.
      //
      // Params:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 21:03:41 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/saved_model_api.cc

                                                          const char* function_path,
                                                          TF_Status* status) {
      tensorflow::ConcreteFunction* result = nullptr;
      tensorflow::Status get_function_status =
          tensorflow::unwrap(model)->GetFunction(function_path, &result);
      status->status.Update(get_function_status);
      if (!get_function_status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/public/saved_model_api.h

    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_PUBLIC_SAVED_MODEL_API_H_
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/experimental/saved_model/public/concrete_function.h"
    #include "tensorflow/c/experimental/saved_model/public/concrete_function_list.h"
    #include "tensorflow/c/experimental/saved_model/public/signature_def_function.h"
    #include "tensorflow/c/tf_status.h"
    
    #ifdef __cplusplus
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 5K bytes
    - Viewed (0)
  4. RELEASE.md

    * Introducing `tf.types.experimental.AtomicFunction` as the fastest way to perform TF computations in Python.
    
        * Can be accessed through `inference_fn` property of `ConcreteFunction`s
        * Does not support gradients.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top