Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for signatureKey (0.43 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

        Args:
          path_map: Signature def key -> path mapping. Each path is a TFRecord file
            to which a `RepresentativeDataset` is saved. The signature def keys
            should be a subset of the `SignatureDef` keys of the
            `representative_dataset` argument of the `save()` call.
          expected_input_key_map: Signature def key -> expected input keys. If set,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/loader_util.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow {
    namespace internal {
    
    // A SavedModel may store the name of the initialization op to run in the
    // in the SignatureDef (v2) or a collection (v1). If an init_op collection
    // exists, then the collection must contain exactly one op.
    Status GetInitOp(const string& export_dir, const MetaGraphDef& meta_graph_def,
                     string* init_op_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 12 20:05:11 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_function_lib.cc

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace py = ::pybind11;
    
    namespace {
    
    using ::stablehlo::quantization::CalibrationOptions;
    using ::stablehlo::quantization::MinMaxValue;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::calibrator::CalibrationStatistics;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::PyFunctionLibrary;
    using ::tensorflow::quantization::RepresentativeDatasetFile;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/signature_def_with_multiple_entry_points.mlir

    // CHECK-NEXT:      tensor_index: 1
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    outputs: [ {
    // CHECK-NEXT:      name: "result",
    // CHECK-NEXT:      tensor_index: 3
    // CHECK-NEXT:    } ],
    // CHECK-NEXT:    signature_key: "add"
    // CHECK-NEXT:  }, {
    // CHECK-NEXT:    inputs: [ {
    // CHECK-NEXT:      name: "input1",
    // CHECK-NEXT:      tensor_index: 1
    // CHECK-NEXT:    }, {
    // CHECK-NEXT:      name: "input2"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/type_casters.h

        : public internal::SerializedProtobufCaster<
              ::stablehlo::quantization::CalibrationOptions> {};
    
    template <>
    struct type_caster<tensorflow::SignatureDef>
        : public internal::SerializedProtobufCaster<tensorflow::SignatureDef> {};
    
    template <>
    struct type_caster<tensorflow::GraphDef>
        : public internal::SerializedProtobufCaster<tensorflow::GraphDef> {};
    
    template <>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/experimental/public/saved_model_api.h

      ConcreteFunction* GetConcreteFunction(const std::string& function_path,
                                            Status* status);
    
      // Retrieve a function from the TF SavedModel via a SignatureDef key.
      //
      // Params:
      //  signature_def_key - String key of SignatureDef map of a SavedModel:
      //                      https://github.com/tensorflow/tensorflow/blob/69b08900b1e991d84bce31f3b404f5ed768f339f/tensorflow/core/protobuf/meta_graph.proto#L89
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/constants.h

    inline constexpr char kSavedModelVariablesDirectory[] = "variables";
    
    // SavedModel variables filename.
    inline constexpr char kSavedModelVariablesFilename[] = "variables";
    
    // SavedModel SignatureDef keys for the initialization and train ops. Used in
    // V2 SavedModels.
    inline constexpr char kSavedModelInitOpSignatureKey[] = "__saved_model_init_op";
    inline constexpr char kSavedModelTrainOpSignatureKey[] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 23:02:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

          absl::string_view src_saved_model_path,
          absl::flat_hash_map<FunctionName, FunctionAlias> function_aliases,
          std::unordered_set<std::string> tags,
          absl::flat_hash_map<std::string, tensorflow::SignatureDef>
              signature_def_map,
          std::vector<std::string> signature_keys);
    
      // Runs calibration on `module_op` and returns a calibrated ModuleOp with
      // calibrated statistics embedded.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

    using ::stablehlo::quantization::io::CreateTmpDir;
    using ::stablehlo::quantization::io::GetLocalTmpFileName;
    using ::stablehlo::quantization::io::ListDirectory;
    using ::tensorflow::AssetFileDef;
    using ::tensorflow::SignatureDef;
    using ::tensorflow::calibrator::CalibrationStatistics;
    using ::tensorflow::quantization::ExportedModel;
    using ::tensorflow::quantization::PyFunctionLibrary;
    using ::tensorflow::quantization::RunPasses;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/saved_model_api.h

      virtual Status GetFunctions(
          int node_id,
          absl::flat_hash_map<std::string, ConcreteFunction*>* functions) = 0;
    
      // Retrieve a SignatureDefFunction from a SavedModel, using the key of the
      // SignatureDef map:
      // https://github.com/tensorflow/tensorflow/blob/69b08900b1e991d84bce31f3b404f5ed768f339f/tensorflow/core/protobuf/meta_graph.proto#L89
      virtual Status GetSignatureDefFunction(const std::string& signature_def_key,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 04 17:05:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top