Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MinMaxValue (0.1 sec)

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

                               representative_dataset_file_map);
      }
    
      std::optional<MinMaxValue> GetCalibrationMinMaxValue(
          const CalibrationStatistics& calibration_statistics,
          const CalibrationOptions& calibration_options) const override {
        PYBIND11_OVERRIDE_PURE(std::optional<MinMaxValue>, PyFunctionLibrary,
                               get_calibration_min_max_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/min_max_value.h

    #include <utility>
    
    namespace stablehlo::quantization {
    
    // Represents the (min, max) value pair, representing the range of values after
    // calibrating for quantization.
    using MinMaxValue = std::pair<float, float>;
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 16:32:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.cc

              absl::StrFormat("Calibrated data does not exist. Cannot find "
                              "statistics. value for id: %s",
                              id));
          return;
        }
    
        const std::optional<MinMaxValue> min_max_values =
            py_function_library.GetCalibrationMinMaxValue(iter->second,
                                                          calibration_options);
        if (min_max_values == std::nullopt) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h

      // If the function signature changes, likely its corresponding .pyi type
      // hinting and definition should also change.
      // LINT.IfChange(get_calibration_min_max_value)
      virtual std::optional<stablehlo::quantization::MinMaxValue>
      GetCalibrationMinMaxValue(const tensorflow::calibrator::CalibrationStatistics&
                                    calibration_statistics,
                                const ::stablehlo::quantization::CalibrationOptions&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top