Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for SignatureDef (0.39 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

        const std::vector<std::string> &signature_keys,
        const std::unordered_set<std::string> &tags,
        const QuantizationOptions &quantization_options,
        const absl::flat_hash_map<std::string, SignatureDef> &signature_def_map,
        const PyFunctionLibrary &py_function_library,
        const absl::flat_hash_map<std::string, RepresentativeDatasetFile>
            &representative_dataset_file_map_serialized) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Builds and returns list of tfl.SignatureDef sections in the model.
      std::optional<VectorBufferOffset<BufferOffset<tflite::SignatureDef>>>
      CreateSignatureDefs(const std::vector<SignatureDefData>& signature_defs);
    
      // Returns list of offsets for the passed 'items' in TensorMap structure
      // inside the flatbuffer.
      // 'items' is a map from tensor name in signatureDef to tensor name in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        fbb_.AddOffset(SignatureDef::VT_INPUTS, inputs);
      }
      void add_outputs(::flatbuffers::Offset<::flatbuffers::Vector<::flatbuffers::Offset<tflite::TensorMap>>> outputs) {
        fbb_.AddOffset(SignatureDef::VT_OUTPUTS, outputs);
      }
      void add_signature_key(::flatbuffers::Offset<::flatbuffers::String> signature_key) {
        fbb_.AddOffset(SignatureDef::VT_SIGNATURE_KEY, signature_key);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Find the FuncOp which corresponds to current SignatureDef.
      mlir::SymbolTable sub_symbol_table(*sub_module);
      auto func_op = sub_symbol_table.lookup<mlir::func::FuncOp>(sig_def_key);
      TF_RET_CHECK(func_op)
          << "Graphdef importer should have created a function named "
          << sig_def_key << ".";
    
      // Use unique SignatureDef key as exported name.
      func_op->setAttr(kTfSavedModelExportedNamesAttr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. RELEASE.md

        *   Add 5D support to `SLICE` op.
        *   TFLite Supports SingatureDef:
            *   TFLiteConverter exports models with SignatureDef
            *   Interpreter supports getting a list of signatures and getting
                callable function for a given signaturedef.
        *   Add int8 support for `ReshapeV2`.
        *   Add experimental support for optimization with sparsity.
    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