Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for TOCO (0.06 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

    // to resume the conversion after injecting more information in the middle of
    // it.
    void AddPostVariableFreezingTFToTFLConversionPasses(
        llvm::StringRef saved_model_dir, const toco::TocoFlags& toco_flags,
        const mlir::TFL::PassConfig& pass_config,
        mlir::OpPassManager* pass_manager) {
      // Note:
      // We need to fuse composite ops before LowerStaticTensorList pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      pass_config.enable_hlo_to_tf_conversion = enable_hlo_to_tf_conversion;
      pass_config.disable_hlo_to_tfl_conversion = disable_hlo_to_tfl_conversion;
      pass_config.reduce_type_precision = reduce_type_precision;
    
      toco::TocoFlags toco_flags;
      toco_flags.set_force_select_tf_ops(!emit_builtin_tflite_ops);
      toco_flags.set_enable_select_tf_ops(emit_select_tf_ops);
      toco_flags.set_allow_custom_ops(emit_custom_ops);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/tools/tflite_op_coverage_spec_getters_gen.cc

          // quantizer. This code is temporary until 16x8 is fully supported in MLIR
          // quantizer.
          if (act_type == InputDataType::INT16) {
            if (is_toco) {
              // Conditions when using TOCO.
              if (absl::StrContains(op_name, "LSTMOp")) continue;
            } else {
              // Conditions when using MLIR.
              if (!(absl::StrContains(op_name, "LSTMOp") ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. tensorflow/BUILD

            "//tensorflow/lite/kernels:builtin_ops",
            "//tensorflow/lite/kernels:reference_ops",
            "//tensorflow/lite/schema:schema_fbs",
            "//tensorflow/lite/toco/logging:conversion_log_util",
            "//tensorflow/lite/toco/logging:toco_conversion_log_proto_cc",
            "//tensorflow/lite/toco:model_flags_proto_cc",
            "//tensorflow/lite/toco:toco_convert",
            "//tensorflow/lite/toco:toco_flags_proto_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      // required for post-training quantization.
      const bool infer_tensor_range_;
    
      // Calculate scales in float instead of double, so that the scales and
      // quantized values are exactly the same with the TOCO quantizer.
      const bool legacy_float_scale_;
    
      // If true, the model is a floating point graph with QDQ ops to be eliminated
      // and fused into quantized kernels.
      const bool is_qdq_conversion_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include "tensorflow/lite/graph_info.h"
    #include "tensorflow/lite/python/metrics/converter_error_data.pb.h"
    #include "tensorflow/lite/schema/schema_conversion_utils.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    #include "tensorflow/lite/tools/versioning/gpu_compatibility.h"
    #include "tensorflow/lite/tools/versioning/op_version.h"
    #include "tensorflow/lite/tools/versioning/runtime_version.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          return failure();
        }
    
        // TensorFlow convolution op only has two inputs, while the TFLite one has
        // three, with the bias vector marked as optional. However, TOCO has a
        // dedicated pass, EnsureBiasVectors, to create default bias vectors for all
        // those missing. So we model TFLite convolution op as requiring three
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. RELEASE.md

        for the
        [TFLite Optimizing Converter](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/toco/README.md)
        has been expanded, and the command line interface (AKA: `toco`,
        `tflite_convert`) is once again included in the standard `pip` installation.
    *   Improved data-loading and text processing with:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top