Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for quantize_qat_model (0.28 sec)

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

      pybind11_protobuf::ImportNativeProtoCasters();
    
      m.def(
          // If the function signature changes, likely its corresponding .pyi type
          // hinting should also change.
          // LINT.IfChange
          "quantize_qat_model",
          [](const absl::string_view src_saved_model_path,
             const absl::string_view dst_saved_model_path,
             const QuantizationOptions& quantization_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

        quant_opts: Quantization options.
        signature_def_map: Signature def key -> SignatureDef mapping.
      """
      logging.info('Running static-range quantization for QAT model.')
    
      pywrap_quantize_model.quantize_qat_model(
          src_saved_model_path,
          dst_saved_model_path,
          quantization_options_serialized=quant_opts.SerializeToString(),
          signature_keys=list(quant_opts.signature_keys),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

          /*unfreeze_constants=*/!quantization_options.freeze_all_variables(),
          function_aliases);
    }
    
    }  // namespace
    
    absl::StatusOr<ExportedModel> QuantizeQatModel(
        absl::string_view saved_model_path,
        const std::vector<std::string> &signature_keys,
        const std::unordered_set<std::string> &tags,
        const QuantizationOptions &quantization_options) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top