Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for force_graph_mode_calibration (0.65 sec)

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

          const bool force_graph_mode_calibration,
          const absl::flat_hash_map<std::string, RepresentativeDatasetFile>&
              representative_dataset_file_map) const override {
        PYBIND11_OVERRIDE_PURE(std::optional<bool>, PyFunctionLibrary,
                               run_calibration, saved_model_path, signature_keys,
                               tags, force_graph_mode_calibration,
    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/tensorflow/python/pywrap_function_lib.pyi

      # LINT.ThenChange()
    
      # LINT.IfChange(run_calibration)
      def run_calibration(
          self,
          saved_model_path: str,
          signature_keys: list[str],
          tags: set[str],
          force_graph_mode_calibration: bool,
          # Value type: RepresentativeDatasetFile.
          representative_dataset_file_map_serialized: dict[str, bytes],
      ) -> Optional[bool]: ...
      # LINT.ThenChange()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    
    def _run_graph_for_calibration(
        float_model_dir: str,
        signature_keys: Sequence[str],
        tags: Collection[str],
        representative_dataset: rd.RepresentativeDatasetOrMapping,
        force_graph_mode_calibration: bool,
    ) -> None:
      """Runs the graph for calibration using representative datasets.
    
      Args:
        float_model_dir: Path to the model to calibrate.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h

      virtual std::optional<bool> RunCalibration(
          absl::string_view saved_model_path,
          const std::vector<std::string>& signature_keys,
          const std::unordered_set<std::string>& tags,
          bool force_graph_mode_calibration,
          const absl::flat_hash_map<std::string, RepresentativeDatasetFile>&
              representative_dataset_file_map) const = 0;
      // LINT.ThenChange(
      //     pywrap_function_lib.pyi:run_calibration,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

        // Run calibration on the exported model.
        if (py_function_lib_->RunCalibration(
                calibration_saved_model_dir, signature_keys_, tags_,
                /*force_graph_mode_calibration=*/true,
                representative_dataset_file_map) == std::nullopt) {
          return absl::InternalError(
              "CalibrationComponent error: Failed to run calibration.");
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

        )
    
      # Set `force_graph_mode_calibration` to True to avoid skipping op execution,
      # which are not connected to return ops, during calibration execution.
      # TODO: b/335031954 - Bring back support to run calibration in Eager mode.
      logging.debug(
          'Setting `force_graph_mode_calibration = True` to ensure the calibration'
          ' mode is executed properly.'
      )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      // If set to true, it forces calibration in graph model instead of eager mode
      // when the context is in eager mode. This will be forcibly set to true when
      // using DebuggerOptions.
      bool force_graph_mode_calibration = 14;
    
      // Defines calibration options for quantization. This option is only used for
      // activation of static range quantization (SRQ). Quantization calibration
      // method is set to MIN_MAX by default.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

            saved_model_path, tags, signature_def_map);
    
        py_function_library.RunCalibration(
            calibration_saved_model_dir, signature_keys, tags,
            quantization_options.force_graph_mode_calibration(),
            representative_dataset_file_map_serialized);
      }
    
      if (absl::Status status = AddCalibrationStatistics(
              *module_ref, calibration_data_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            quantization_method=quant_opts_pb2.QuantizationMethod(
                preset_method=_PresetMethod.METHOD_STATIC_RANGE_INT8
            ),
            op_set=quant_opts_pb2.TF,
            force_graph_mode_calibration=True,
        )
    
        with self.assertLogs(level='INFO') as info_logs:
          # Save the logger verbosity.
          prev_log_level = logging.get_verbosity()
          logging.set_verbosity(logging.INFO)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top