ultralytics 8.3.70 add data argument to Sony IMX500 export (#18852)

Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
Co-authored-by: Ultralytics Assistant <135830346+UltralyticsAssistant@users.noreply.github.com>
Co-authored-by: Francesco Mattioli <Francesco.mttl@gmail.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
Lakshantha Dissanayake 2025-01-30 03:28:19 -08:00 committed by GitHub
parent ec622230fb
commit f38fa61ffc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 47 additions and 36 deletions

View file

@ -89,11 +89,16 @@ yolov8n_imx_model
When exporting a model to IMX500 format, you can specify various arguments:
| Key | Value | Description |
| -------- | ------ | -------------------------------------------------------- |
| `format` | `imx` | Format to export to (imx) |
| `int8` | `True` | Enable INT8 quantization for the model (default: `True`) |
| `imgsz` | `640` | Image size for the model input (default: `640`) |
| Key | Value | Description |
| -------- | ------------ | -------------------------------------------------------------- |
| `format` | `imx` | Format to export to (imx) |
| `int8` | `True` | Enable INT8 quantization for the model (default: `True`) |
| `imgsz` | `640` | Image size for the model input (default: `640`) |
| `data` | `coco8.yaml` | Path to the dataset configuration file (default: `coco8.yaml`) |
!!! note
When using `data` argument for quantization, please check [Dataset Guide](https://docs.ultralytics.com/datasets/detect) to learn more about the dataset format.
## Using IMX500 Export in Deployment