Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AVERAGE_MIN_MAX (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

          llvm::cl::values(
              clEnumValN(TEST_CASE_MIN_MAX, "MIN_MAX",
                         "Uses MIN_MAX calibration method"),
              clEnumValN(TEST_CASE_AVERAGE_MIN_MAX, "AVERAGE_MIN_MAX",
                         "Uses AVERAGE_MIN_MAX calibration method"),
              clEnumValN(TEST_CASE_HISTOGRAM_PERCENTILE, "HISTOGRAM_PERCENTILE",
                         "Uses HISTOGRAM_PERCENTILE calibration method"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      CalibrationMethod calibration_method = 1;
    
      // Defines the parameters required for calibration. Parameters such as the
      // number of bins in the histogram and percentile belong to it.
      // MIN_MAX and AVERAGE_MIN_MAX don't require this parameter and methods
      // starting with HISTOGRAM require this parameter.
      CalibrationParameters calibration_parameters = 2;
    
      // Configures representative dataset. Each item corresponds to a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_custom_aggregation_ops.mlir

    // RUN: tf-quant-opt %s -quant-insert-custom-aggregation-ops='test-case=MIN_MAX' -split-input-file | FileCheck --check-prefix=MIN-MAX-CHECK %s
    // RUN: tf-quant-opt %s -quant-insert-custom-aggregation-ops='test-case=AVERAGE_MIN_MAX'  -split-input-file | FileCheck --check-prefix=AVERAGE-MIN-MAX-CHECK %s
    // RUN: tf-quant-opt %s -quant-insert-custom-aggregation-ops='test-case=HISTOGRAM_PERCENTILE' -split-input-file | FileCheck --check-prefix=HISTOGRAM-PERCENTILE-CHECK %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 32.1K bytes
    - Viewed (0)
Back to top