Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for enable_whole_model_verify_ (0.37 sec)

  1. tensorflow/compiler/mlir/lite/transforms/quantize.cc

      explicit QuantizePass(const quant::QuantizationSpecs& quant_specs)
          : quant_specs(quant_specs) {
        enable_numeric_verify_ = quant_specs.verify_numeric;
        enable_whole_model_verify_ = quant_specs.whole_model_verify;
        enable_legacy_quantize_ = quant_specs.legacy_float_scale;
        enable_dynamic_range_quantization_ = quant_specs.weight_quantization;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

          Option<"error_tolerance_", "error-tolerance",
                 "float", "5.0f",
                 "Error tolerance for numeric verify. Valid when `-numeric-verify` is set.">,
          Option<"enable_whole_model_verify_", "whole-model-verify",
                 "bool", "false",
                 "Whether verify numericals layer by layer or whole model. Valid when `-numeric-verify` is set.">,
          Option<"enable_log_if_failed_", "log-if-failed",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/converter_python_api_wrapper.cc

          [](py::object input_contents_txt_raw, bool disable_per_channel,
             bool fully_quantize, int inference_type, int input_data_type,
             int output_data_type, bool enable_numeric_verify,
             bool enable_whole_model_verify, py::object op_blocklist,
             py::object node_blocklist, bool enable_variable_quantization,
             bool disable_per_channel_for_dense_layers,
             py::object debug_options_proto_txt_raw) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/wrap_converter.py

    def wrapped_experimental_mlir_quantize(
        input_data_str,
        disable_per_channel,
        fully_quantize,
        inference_type,
        input_data_type,
        output_data_type,
        enable_numeric_verify,
        enable_whole_model_verify,
        denylisted_ops,
        denylisted_nodes,
        enable_variable_quantization,
        disable_per_channel_for_dense_layers,
        debug_options_str,
    ):
      """Wraps experimental mlir quantize model."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/_pywrap_converter_api.pyi

    def Experime...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/converter_python_api.h

                                int input_data_type, int output_data_type,
                                bool enable_numeric_verify = false,
                                bool enable_whole_model_verify = false,
                                PyObject* op_denylist = nullptr,
                                PyObject* node_denylist = nullptr,
                                bool enable_variable_quantization = false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                                int input_data_type, int output_data_type,
                                bool enable_numeric_verify,
                                bool enable_whole_model_verify,
                                PyObject* op_denylist, PyObject* node_denylist,
                                bool enable_variable_quantization,
                                bool disable_per_channel_for_dense_layers,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

        bool weight_only_quantization =
            quant_params_.quant_spec.weight_only_quantization;
        bool enable_verify = quant_params_.numeric_verify_spec.verify_numeric;
        bool enable_whole_model_verify =
            quant_params_.numeric_verify_spec.whole_model_verify;
        absl::flat_hash_set<std::string> ops_blocklist =
            quant_params_.quant_spec.ops_blocklist;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top