Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for QuantizationOptions (0.6 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/concurrency_test.py

        temp_path = self.create_tempdir().full_path
        saved_model_save.save(
            root, temp_path, signatures=root.add.get_concrete_function()
        )
    
        quantization_options = quant_opts_pb2.QuantizationOptions(
            quantization_method=quant_opts_pb2.QuantizationMethod(
                preset_method=quant_opts_pb2.QuantizationMethod.PresetMethod.METHOD_STATIC_RANGE_INT8
            ),
            tags={tag_constants.SERVING},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

    syntax = "proto3";
    
    package stablehlo.quantization;
    
    option cc_enable_arenas = true;
    
    // Defines arious options to specify and control the behavior of the
    // StableHLO quantizer.
    // NEXT ID: 2
    message QuantizationOptions {
      QuantizationMethod quantization_method = 1;
    }
    
    // NEXT ID: 3
    message QuantizationMethod {
      // Quantization Method can be either preset or custom.
      oneof quantization_method {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.cc

        return true;
      return false;
    }
    
    std::optional<tensorflow::quantization::QuantizationComponentSpec>
    GetWeightComponentSpec(
        const tensorflow::quantization::QuantizationOptions& quantization_options) {
      for (auto& cur_spec : quantization_options.quantization_method()
                                .quantization_component_specs()) {
        if (cur_spec.quantization_component() ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

    // None, the default configuration is "do not quantize the model".
    // 2) A set of supported operations.
    // 3) Unit wise quantization precision.
    // 4) Target hardware name.
    // NEXT ID: 18
    message QuantizationOptions {
      // The default quantization configuration for the model. If the below
      // unit-wise configuration does not exist, we use this quantization
      // configuration for the entire model. For each method, default configuration
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top