Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for enable_numeric_verify_ (0.29 sec)

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

      // Constructor used by manually creating the pass.
      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;
    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

      let dependentDialects = ["TFL::TensorFlowLiteDialect",
        "mlir::quant::QuantizationDialect",
        "mlir::quantfork::QuantizationForkDialect"
      ];
    
      let options = [
          Option<"enable_numeric_verify_", "numeric-verify",
                 "bool", "false",
                 "Whether verify numericals at runtime.">,
          Option<"error_tolerance_", "error-tolerance",
                 "float", "5.0f",
    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

          "ExperimentalMlirQuantizeModel",
          [](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,
    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,
    ):
    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 ExperimentalMlirQuantizeModel(input_contents_txt_raw: object, disable_per_channel: bool = ..., fully_quantize: bool = ..., inference_type: int = ..., input_data_type: int = ..., output_data_type: int = ..., enable_numeric_verify: bool = ..., enable_whole_model_verify: bool = ..., op_blocklist: object = ..., node_blocklist: object = ..., enable_variable_quantization: bool = ..., disable_per_channel_for_dense_layers: bool = ..., debug_options_proto_txt_raw: object =...
    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

                                bool fully_quantize, int inference_type,
                                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,
    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

                                bool fully_quantize, int inference_type,
                                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,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top