Yolo Vision Shenzhen
Shenzhen
Jetzt beitreten
Glossar

Modellquantisierung

Optimieren Sie die KI-Leistung mit Modellquantisierung. Reduzieren Sie die Größe, steigern Sie die Geschwindigkeit und verbessern Sie die Energieeffizienz für reale Anwendungen.

Model quantization is a sophisticated model optimization technique used to reduce the computational and memory costs of running deep learning models. In standard training workflows, neural networks typically store parameters (weights and biases) and activation maps using 32-bit floating-point numbers (FP32). While this high precision ensures accurate calculations during training, it is often unnecessary for inference. Quantization converts these values into lower-precision formats, such as 16-bit floating-point (FP16) or 8-bit integers (INT8), effectively shrinking the model size and accelerating execution speed without significantly compromising accuracy.

Why Quantization Matters

The primary driver for quantization is the need to deploy powerful AI on resource-constrained hardware. As computer vision models like YOLO26 become more complex, their computational demands increase. Quantization addresses three critical bottlenecks:

  • Memory Footprint: By reducing the bit-width of weights (e.g., from 32-bit to 8-bit), the model's storage requirement is reduced by up to 4x. This is vital for mobile apps where application size is restricted.
  • Inference Latency: Lower precision operations are computationally cheaper. Modern processors, especially those with specialized neural processing units (NPUs), can execute INT8 operations much faster than FP32, significantly reducing inference latency.
  • Power Consumption: Moving less data through memory and performing simpler arithmetic operations consumes less energy, extending battery life in portable devices and autonomous vehicles.

Vergleich mit verwandten Konzepten

Es ist wichtig, die Quantisierung von anderen Optimierungstechniken zu unterscheiden, da sie das Modell auf unterschiedliche Weise verändern :

  • Quantization vs. Pruning: While quantization reduces the file size by lowering the bit-width of parameters, model pruning involves removing unnecessary connections (weights) entirely to create a sparse network. Pruning alters the model's structure, whereas quantization alters the data representation.
  • Quantisierung vs. Wissensdestillation: Wissensdestillation ist eine Trainingstechnik , bei der ein kleines „Schüler”-Modell lernt, ein großes „Lehrer”-Modell nachzuahmen. Quantisierung wird oft nach der Destillation auf das Schülermodell angewendet, um die Edge-KI-Leistung weiter zu verbessern.

Anwendungsfälle in der Praxis

Quantization enables computer vision and AI across various industries where efficiency is paramount.

  1. Autonomous Systems: In the automotive industry, self-driving cars must process visual data from cameras and LiDAR in real-time. Quantized models deployed on NVIDIA TensorRT engines allow these vehicles to detect pedestrians and obstacles with millisecond latency, ensuring passenger safety.
  2. Intelligente Landwirtschaft: Mit Multispektralkameras ausgestattete Drohnen verwenden quantisierte Objekterkennungsmodelle, um Pflanzenkrankheiten zu identifizieren oder Wachstumsstadien zu überwachen. Durch die lokale Ausführung dieser Modelle auf den eingebettetenSystemen der Drohne entfällt die Notwendigkeit unzuverlässiger Mobilfunkverbindungen in abgelegenen Gebieten.

Implementierung der Quantisierung mit Ultralytics

The Ultralytics library simplifies the export process, allowing developers to convert models like the cutting-edge YOLO26 into quantized formats. The Ultralytics Platform also provides tools to manage these deployments seamlessly.

The following example demonstrates how to export a model to TFLite with INT8 quantization enabled. This process involves a calibration step where the model observes sample data to determine the optimal dynamic range for the quantized values.

from ultralytics import YOLO

# Load a standard YOLO26 model
model = YOLO("yolo26n.pt")

# Export to TFLite format with INT8 quantization
# The 'int8' argument triggers Post-Training Quantization
# 'data' provides the calibration dataset needed for mapping values
model.export(format="tflite", int8=True, data="coco8.yaml")

Optimierte Modelle werden häufig unter Verwendung interoperabler Standards wie ONNX oder leistungsstarken Inferenz-Engines wie OpenVINO, wodurch eine breite Kompatibilität über verschiedene Hardware-Ökosysteme hinweg gewährleistet wird.

Werden Sie Mitglied der Ultralytics

Gestalten Sie die Zukunft der KI mit. Vernetzen Sie sich, arbeiten Sie zusammen und wachsen Sie mit globalen Innovatoren

Jetzt beitreten