ultralytics 8.4.113


pip install ultralytics

  Latest version

Released: Jul 30, 2026


Meta
Author: Glenn Jocher, Jing Qiu
Maintainer: Ultralytics
Requires Python: >=3.8

Classifiers

Development Status
  • 5 - Production/Stable

Intended Audience
  • Developers
  • Education
  • Science/Research

License
  • OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)

Programming Language
  • Python :: 3
  • Python :: 3.8
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13

Topic
  • Software Development
  • Scientific/Engineering
  • Scientific/Engineering :: Artificial Intelligence
  • Scientific/Engineering :: Image Recognition

Operating System
  • POSIX :: Linux
  • MacOS
  • Microsoft :: Windows

ultralytics%2Fultralytics | Trendshift

Ultralytics creates cutting-edge, state-of-the-art (SOTA) YOLO models built on years of foundational research in computer vision and AI. Constantly updated for performance and flexibility, our models are fast, accurate, and easy to use. They excel at object detection, tracking, instance segmentation, semantic segmentation, image classification, and pose estimation tasks.

Find detailed documentation in the Ultralytics Docs. Get support via GitHub Issues. Join discussions on Discord, Reddit, and the Ultralytics Community Forums!

Request an Enterprise License for commercial use at Ultralytics Licensing.

YOLO26 performance plots
Ultralytics GitHub space Ultralytics LinkedIn space Ultralytics Twitter space Ultralytics YouTube space Ultralytics TikTok space Ultralytics BiliBili space Ultralytics Discord

📄 Documentation

See below for quickstart installation and usage examples. For comprehensive guidance on training, validation, prediction, and deployment, refer to our full Ultralytics Docs.

Install

Install the ultralytics package, including all requirements, in a Python>=3.8 environment with PyTorch>=1.8.

PyPI - Version Ultralytics Downloads PyPI - Python Version

pip install ultralytics

For alternative installation methods, including Conda, Docker, and building from source via Git, please consult the Quickstart Guide.

Conda Version Docker Image Version Ultralytics Docker Pulls

Usage

CLI

You can use Ultralytics YOLO directly from the Command Line Interface (CLI) with the yolo command:

# Predict using a pretrained YOLO model (e.g., YOLO26n) on an image
yolo predict model=yolo26n.pt source='https://ultralytics.com/images/bus.jpg'

The yolo command supports various tasks and modes, accepting additional arguments like imgsz=640. Explore the YOLO CLI Docs for more examples.

Python

Ultralytics YOLO can also be integrated directly into your Python projects. It accepts the same configuration arguments as the CLI:

from ultralytics import YOLO

# Load a pretrained YOLO26n model
model = YOLO("yolo26n.pt")

# Train the model on the COCO8 dataset for 100 epochs
train_results = model.train(
    data="coco8.yaml",  # Path to dataset configuration file
    epochs=100,  # Number of training epochs
    imgsz=640,  # Image size for training
    device="cpu",  # Device to run on (e.g., 'cpu', 0, [0,1,2,3])
)

# Evaluate the model's performance on the validation set
metrics = model.val()

# Perform object detection on an image
results = model("path/to/image.jpg")  # Predict on an image
results[0].show()  # Display results

# Export the model to ONNX format for deployment
path = model.export(format="onnx")  # Returns the path to the exported model

Discover more examples in the YOLO Python Docs.

✨ Models

Ultralytics supports a wide range of YOLO models, from early versions like YOLOv3 to the latest YOLO26. The tables below showcase YOLO26 models pretrained on COCO for Detection, Segmentation, and Pose Estimation. Semantic Segmentation models are pretrained on Cityscapes, Depth Estimation models are pretrained on a broad multi-dataset mix and evaluated on NYU Depth V2, and Classification models are pretrained on ImageNet. Tracking mode is compatible with Detection, Segmentation, and Pose models. All Models download automatically from the latest Ultralytics release on first use.

Ultralytics YOLO supported tasks

Detection (COCO)

Explore the Detection Docs for usage examples. These models are trained on the COCO dataset, featuring 80 object classes.

Model size
(pixels)
mAPval
50-95
mAPval
50-95(e2e)
Speed
CPU ONNX
(ms)
Speed
T4 TensorRT10
(ms)
params
(M)
FLOPs
(B)
YOLO26n 640 40.9 40.1 38.9 ± 0.7 1.7 ± 0.0 2.4 5.4
YOLO26s 640 48.6 47.8 87.2 ± 0.9 2.5 ± 0.0 9.5 20.7
YOLO26m 640 53.1 52.5 220.0 ± 1.4 4.7 ± 0.1 20.4 68.2
YOLO26l 640 55.0 54.4 286.2 ± 2.0 6.2 ± 0.2 24.8 86.4
YOLO26x 640 57.5 56.9 525.8 ± 4.0 11.8 ± 0.2 55.7 193.9
  • mAPval values refer to single-model single-scale performance on the COCO val2017 dataset. See YOLO Performance Metrics for details.
    Reproduce with yolo val detect data=coco.yaml device=0
  • Speed metrics are averaged over COCO val images using an Amazon EC2 P4d instance. CPU speeds measured with ONNX export. GPU speeds measured with TensorRT export.
    Reproduce with yolo val detect data=coco.yaml batch=1 device=0|cpu
Segmentation (COCO)

Refer to the Segmentation Docs for usage examples. These models are trained on COCO-Seg, including 80 classes.

Model size
(pixels)
mAPbox
50-95(e2e)
mAPmask
50-95(e2e)
Speed
CPU ONNX
(ms)
Speed
T4 TensorRT10
(ms)
params
(M)
FLOPs
(B)
YOLO26n-seg 640 39.6 33.9 53.3 ± 0.5 2.1 ± 0.0 2.7 9.1
YOLO26s-seg 640 47.3 40.0 118.4 ± 0.9 3.3 ± 0.0 10.4 34.2
YOLO26m-seg 640 52.5 44.1 328.2 ± 2.4 6.7 ± 0.1 23.6 121.5
YOLO26l-seg 640 54.4 45.5 387.0 ± 3.7 8.0 ± 0.1 28.0 139.8
YOLO26x-seg 640 56.5 47.0 787.0 ± 6.8 16.4 ± 0.1 62.8 313.5
  • mAPval values are for single-model single-scale on the COCO val2017 dataset. See YOLO Performance Metrics for details.
    Reproduce with yolo val segment data=coco.yaml device=0
  • Speed metrics are averaged over COCO val images using an Amazon EC2 P4d instance. CPU speeds measured with ONNX export. GPU speeds measured with TensorRT export.
    Reproduce with yolo val segment data=coco.yaml batch=1 device=0|cpu
Semantic Segmentation (Cityscapes)

See the Semantic Segmentation Docs for usage examples. These models are trained on Cityscapes, including 19 classes.

Model size
(pixels)
mIoUval Speed
RTX3090 PyTorch
(ms)
params
(M)
FLOPs
(B)
YOLO26n-sem 1024 × 2048 78.3 4.4 ± 0.0 1.6 22.7
YOLO26s-sem 1024 × 2048 80.8 8.4 ± 0.0 6.5 88.8
YOLO26m-sem 1024 × 2048 82.0 19.9 ± 0.1 14.3 304.5
YOLO26l-sem 1024 × 2048 82.9 26.5 ± 0.1 17.9 384.7
YOLO26x-sem 1024 × 2048 83.6 48.9 ± 0.2 40.2 861.7
  • mIoUval values are for single-model single-scale on the Cityscapes validation set.
    Reproduce with yolo semantic val data=cityscapes.yaml device=0 imgsz=2048
  • Speed metrics are averaged over Cityscapes validation images using an RTX3090 instance.
    Reproduce with yolo semantic val data=cityscapes.yaml batch=1 device=0|cpu imgsz=2048
Depth Estimation (NYU Depth V2)

See the Depth Estimation Docs for usage examples. These models are pretrained on a broad multi-dataset mix and evaluated on the NYU Depth V2 Eigen test split, predicting per-pixel depth in meters.

Model size
(pixels)
delta1NYU abs_relNYU rmseNYU Speed
CPU ONNX
(ms)
Speed
T4 TensorRT10
(ms)
params
(M)
FLOPs
(B)
YOLO26n-depth 768 0.882 0.109 0.414 272.0 ± 27.2 2.7 ± 0.1 6.4 46.9
YOLO26s-depth 768 0.896 0.104 0.399 393.7 ± 13.1 3.8 ± 0.0 13.2 67.9
YOLO26m-depth 768 0.921 0.089 0.364 621.5 ± 49.7 6.0 ± 0.1 23.3 130.7
YOLO26l-depth 768 0.930 0.083 0.351 821.9 ± 50.7 7.7 ± 0.1 27.7 157.2
YOLO26x-depth 768 0.933 0.080 0.344 1240.9 ± 73.3 13.6 ± 0.2 57.0 302.0
  • delta1NYU is the percentage of pixels where the predicted depth is within a factor of 1.25 of the ground truth, on the NYU Depth V2 Eigen test split (654 images) with multi-scale + horizontal-flip TTA and log-least-squares alignment.
  • Single-scale accuracy without TTA is reproducible with yolo depth val model=yolo26n-depth.pt data=nyu-depth.yaml imgsz=768 device=0 (substitute model= for each size), which uses median (scale-only) alignment and scores lower: delta1 0.785 (n), 0.786 (s), 0.827 (m), 0.839 (l), 0.843 (x).
  • abs_rel is the mean absolute relative error between predicted and ground-truth depth values.
  • rmse is the root mean squared error in meters.
  • Speed is inference-only latency (pre/post-processing excluded) at imgsz=768, batch=1, reported as mean ± std over timed runs after warmup. CPU ONNX is ONNX Runtime fp32 on a 32-core Intel Xeon (Skylake); T4 TensorRT10 is TensorRT fp16 on a Tesla T4.
  • params and FLOPs are measured at 768×768, the training resolution of the released weights.
Classification (ImageNet)

Consult the Classification Docs for usage examples. These models are trained on ImageNet, covering 1000 classes.

Model size
(pixels)
acc
top1
acc
top5
Speed
CPU ONNX
(ms)
Speed
T4 TensorRT10
(ms)
params
(M)
FLOPs
(B) at 224
YOLO26n-cls 224 71.4 90.1 5.0 ± 0.3 1.1 ± 0.0 2.8 0.5
YOLO26s-cls 224 76.0 92.9 7.9 ± 0.2 1.3 ± 0.0 6.7 1.6
YOLO26m-cls 224 78.1 94.2 17.2 ± 0.4 2.0 ± 0.0 11.6 4.9
YOLO26l-cls 224 79.0 94.6 23.2 ± 0.3 2.8 ± 0.0 14.1 6.2
YOLO26x-cls 224 79.9 95.0 41.4 ± 0.9 3.8 ± 0.0 29.6 13.6
  • acc values represent model accuracy on the ImageNet dataset validation set.
    Reproduce with yolo val classify data=path/to/ImageNet device=0
  • Speed metrics are averaged over ImageNet val images using an Amazon EC2 P4d instance. CPU speeds measured with ONNX export. GPU speeds measured with TensorRT export.
    Reproduce with yolo val classify data=path/to/ImageNet batch=1 device=0|cpu
Pose (COCO)

See the Pose Estimation Docs for usage examples. These models are trained on COCO-Pose, focusing on the 'person' class.

Model size
(pixels)
mAPpose
50-95(e2e)
mAPpose
50(e2e)
Speed
CPU ONNX
(ms)
Speed
T4 TensorRT10
(ms)
params
(M)
FLOPs
(B)
YOLO26n-pose 640 57.2 83.3 40.3 ± 0.5 1.8 ± 0.0 2.9 7.5
YOLO26s-pose 640 63.0 86.6 85.3 ± 0.9 2.7 ± 0.0 10.4 23.9
YOLO26m-pose 640 68.8 89.6 218.0 ± 1.5 5.0 ± 0.1 21.5 73.1
YOLO26l-pose 640 70.4 90.5 275.4 ± 2.4 6.5 ± 0.1 25.9 91.3
YOLO26x-pose 640 71.6 91.6 565.4 ± 3.0 12.2 ± 0.2 57.6 201.7
  • mAPval values are for single-model single-scale on the COCO Keypoints val2017 dataset. See YOLO Performance Metrics for details.
    Reproduce with yolo val pose data=coco-pose.yaml device=0
  • Speed metrics are averaged over COCO val images using an Amazon EC2 P4d instance. CPU speeds measured with ONNX export. GPU speeds measured with TensorRT export.
    Reproduce with yolo val pose data=coco-pose.yaml batch=1 device=0|cpu
Oriented Bounding Boxes (DOTAv1)

Check the OBB Docs for usage examples. These models are trained on DOTAv1, including 15 classes.

Model size
(pixels)
mAPtest
50-95(e2e)
mAPtest
50(e2e)
Speed
CPU ONNX
(ms)
Speed
T4 TensorRT10
(ms)
params
(M)
FLOPs
(B)
YOLO26n-obb 1024 52.4 78.9 97.7 ± 0.9 2.8 ± 0.0 2.5 14.0
YOLO26s-obb 1024 54.8 80.9 218.0 ± 1.4 4.9 ± 0.1 9.8 55.1
YOLO26m-obb 1024 55.3 81.0 579.2 ± 3.8 10.2 ± 0.3 21.2 183.3
YOLO26l-obb 1024 56.2 81.6 735.6 ± 3.1 13.0 ± 0.2 25.6 230.0
YOLO26x-obb 1024 56.7 81.7 1485.7 ± 11.5 30.5 ± 0.9 57.6 516.5
  • mAPtest values are for single-model multiscale performance on the DOTAv1 test set.
    Reproduce by yolo val obb data=DOTAv1.yaml device=0 split=test and submit merged results to the DOTA evaluation server.
  • Speed metrics are averaged over DOTAv1 val images using an Amazon EC2 P4d instance. CPU speeds measured with ONNX export. GPU speeds measured with TensorRT export.
    Reproduce by yolo val obb data=DOTAv1.yaml batch=1 device=0|cpu

🧩 Integrations

Our key integrations with leading AI platforms extend the functionality of Ultralytics' offerings, enhancing tasks like dataset labeling, training, visualization, and model management. Discover how Ultralytics, in collaboration with partners like Weights & Biases, Comet ML, Roboflow, and Intel OpenVINO, can optimize your AI workflow. Explore more at Ultralytics Integrations.

Ultralytics active learning integrations

🤝 Contribute

We thrive on community collaboration! Ultralytics YOLO wouldn't be the SOTA framework it is without contributions from developers like you. Please see our Contributing Guide to get started. We also welcome your feedback—share your experience by completing our Survey. A huge Thank You 🙏 to everyone who contributes!

Ultralytics open-source contributors

We look forward to your contributions to help make the Ultralytics ecosystem even better!

📜 License

Ultralytics offers two licensing options to suit different needs:

  • AGPL-3.0 License: This OSI-approved open-source license is perfect for students, researchers, and enthusiasts. It encourages open collaboration and knowledge sharing. See the LICENSE file for full details.
  • Ultralytics Enterprise License: For development and production use, this license enables seamless integration of Ultralytics software and AI models into business products and services, including internal tools, automated workflows, and production deployments, bypassing the open-source requirements of AGPL-3.0. To get started, please contact us via Ultralytics Licensing.

📞 Contact

For bug reports and feature requests related to Ultralytics software, please visit GitHub Issues. For questions, discussions, and community support, join our active communities on Discord, Reddit, and the Ultralytics Community Forums. We're here to help with all things Ultralytics!


Ultralytics GitHub space Ultralytics LinkedIn space Ultralytics Twitter space Ultralytics YouTube space Ultralytics TikTok space Ultralytics BiliBili space Ultralytics Discord
8.4.113 Jul 30, 2026
8.4.112 Jul 29, 2026
8.4.111 Jul 29, 2026
8.4.110 Jul 29, 2026
8.4.109 Jul 28, 2026
8.4.108 Jul 27, 2026
8.4.107 Jul 26, 2026
8.4.106 Jul 25, 2026
8.4.105 Jul 24, 2026
8.4.104 Jul 21, 2026
8.4.103 Jul 21, 2026
8.4.102 Jul 19, 2026
8.4.101 Jul 18, 2026
8.4.100 Jul 18, 2026
8.4.99 Jul 17, 2026
8.4.98 Jul 17, 2026
8.4.97 Jul 17, 2026
8.4.96 Jul 15, 2026
8.4.95 Jul 13, 2026
8.4.94 Jul 13, 2026
8.4.93 Jul 12, 2026
8.4.92 Jul 10, 2026
8.4.91 Jul 09, 2026
8.4.90 Jul 06, 2026
8.4.89 Jul 05, 2026
8.4.88 Jul 05, 2026
8.4.87 Jul 03, 2026
8.4.86 Jul 02, 2026
8.4.85 Jul 02, 2026
8.4.84 Jul 01, 2026
8.4.83 Jun 29, 2026
8.4.82 Jun 29, 2026
8.4.81 Jun 28, 2026
8.4.80 Jun 26, 2026
8.4.79 Jun 26, 2026
8.4.78 Jun 25, 2026
8.4.77 Jun 25, 2026
8.4.76 Jun 24, 2026
8.4.75 Jun 21, 2026
8.4.74 Jun 21, 2026
8.4.73 Jun 21, 2026
8.4.72 Jun 19, 2026
8.4.71 Jun 18, 2026
8.4.70 Jun 17, 2026
8.4.69 Jun 16, 2026
8.4.68 Jun 15, 2026
8.4.67 Jun 14, 2026
8.4.66 Jun 11, 2026
8.4.65 Jun 11, 2026
8.4.64 Jun 10, 2026
8.4.63 Jun 09, 2026
8.4.62 Jun 08, 2026
8.4.61 Jun 07, 2026
8.4.60 Jun 01, 2026
8.4.59 Jun 01, 2026
8.4.58 May 31, 2026
8.4.57 May 30, 2026
8.4.56 May 27, 2026
8.4.55 May 26, 2026
8.4.54 May 25, 2026
8.4.53 May 22, 2026
8.4.52 May 20, 2026
8.4.51 May 15, 2026
8.4.50 May 13, 2026
8.4.49 May 12, 2026
8.4.48 May 08, 2026
8.4.47 May 06, 2026
8.4.46 May 01, 2026
8.4.45 Apr 29, 2026
8.4.44 Apr 29, 2026
8.4.43 Apr 28, 2026
8.4.42 Apr 27, 2026
8.4.41 Apr 21, 2026
8.4.40 Apr 20, 2026
8.4.39 Apr 18, 2026
8.4.38 Apr 16, 2026
8.4.37 Apr 10, 2026
8.4.36 Apr 08, 2026
8.4.35 Apr 07, 2026
8.4.34 Apr 06, 2026
8.4.33 Mar 31, 2026
8.4.32 Mar 30, 2026
8.4.31 Mar 28, 2026
8.4.30 Mar 26, 2026
8.4.29 Mar 26, 2026
8.4.28 Mar 26, 2026
8.4.27 Mar 25, 2026
8.4.26 Mar 23, 2026
8.4.25 Mar 23, 2026
8.4.24 Mar 19, 2026
8.4.23 Mar 16, 2026
8.4.22 Mar 14, 2026
8.4.21 Mar 05, 2026
8.4.20 Mar 05, 2026
8.4.19 Feb 28, 2026
8.4.18 Feb 26, 2026
8.4.17 Feb 25, 2026
8.4.16 Feb 24, 2026
8.4.15 Feb 24, 2026
8.4.14 Feb 10, 2026
8.4.13 Feb 08, 2026
8.4.12 Feb 05, 2026
8.4.11 Feb 03, 2026
8.4.10 Feb 02, 2026
8.4.9 Jan 29, 2026
8.4.8 Jan 27, 2026
8.4.7 Jan 21, 2026
8.4.6 Jan 18, 2026
8.4.5 Jan 17, 2026
8.4.4 Jan 16, 2026
8.4.3 Jan 15, 2026
8.4.2 Jan 15, 2026
8.4.1 Jan 14, 2026
8.4.0 Jan 14, 2026
8.3.253 Jan 13, 2026
8.3.252 Jan 10, 2026
8.3.251 Jan 10, 2026
8.3.250 Jan 08, 2026
8.3.249 Jan 07, 2026
8.3.248 Jan 04, 2026
8.3.247 Jan 03, 2026
8.3.246 Jan 02, 2026
8.3.245 Jan 01, 2026
8.3.244 Dec 31, 2025
8.3.243 Dec 30, 2025
8.3.242 Dec 29, 2025
8.3.241 Dec 22, 2025
8.3.240 Dec 17, 2025
8.3.239 Dec 15, 2025
8.3.238 Dec 15, 2025
8.3.237 Dec 12, 2025
8.3.236 Dec 11, 2025
8.3.235 Dec 04, 2025
8.3.234 Dec 01, 2025
8.3.233 Nov 27, 2025
8.3.232 Nov 25, 2025
8.3.231 Nov 23, 2025
8.3.230 Nov 21, 2025
8.3.229 Nov 18, 2025
8.3.228 Nov 12, 2025
8.3.227 Nov 09, 2025
8.3.226 Nov 07, 2025
8.3.225 Nov 04, 2025
8.3.224 Nov 03, 2025
8.3.223 Oct 30, 2025
8.3.222 Oct 29, 2025
8.3.221 Oct 24, 2025
8.3.220 Oct 22, 2025
8.3.219 Oct 22, 2025
8.3.218 Oct 20, 2025
8.3.217 Oct 17, 2025
8.3.216 Oct 16, 2025
8.3.215 Oct 16, 2025
8.3.214 Oct 14, 2025
8.3.213 Oct 12, 2025
8.3.212 Oct 12, 2025
8.3.211 Oct 11, 2025
8.3.210 Oct 11, 2025
8.3.209 Oct 10, 2025
8.3.208 Oct 09, 2025
8.3.207 Oct 08, 2025
8.3.206 Oct 07, 2025
8.3.205 Oct 05, 2025
8.3.204 Sep 30, 2025
8.3.203 Sep 22, 2025
8.3.202 Sep 18, 2025
8.3.201 Sep 16, 2025
8.3.200 Sep 15, 2025
8.3.199 Sep 12, 2025
8.3.198 Sep 10, 2025
8.3.197 Sep 09, 2025
8.3.196 Sep 08, 2025
8.3.195 Sep 06, 2025
8.3.194 Sep 05, 2025
8.3.193 Sep 04, 2025
8.3.192 Sep 03, 2025
8.3.191 Sep 01, 2025
8.3.190 Aug 31, 2025
8.3.189 Aug 28, 2025
8.3.188 Aug 28, 2025
8.3.187 Aug 27, 2025
8.3.186 Aug 25, 2025
8.3.185 Aug 24, 2025
8.3.184 Aug 22, 2025
8.3.183 Aug 21, 2025
8.3.182 Aug 20, 2025
8.3.181 Aug 19, 2025
8.3.180 Aug 18, 2025
8.3.179 Aug 13, 2025
8.3.178 Aug 12, 2025
8.3.177 Aug 11, 2025
8.3.176 Aug 07, 2025
8.3.175 Aug 06, 2025
8.3.174 Aug 04, 2025
8.3.173 Aug 02, 2025
8.3.172 Aug 01, 2025
8.3.171 Jul 31, 2025
8.3.170 Jul 26, 2025
8.3.169 Jul 22, 2025
8.3.168 Jul 18, 2025
8.3.167 Jul 15, 2025
8.3.166 Jul 13, 2025
8.3.165 Jul 11, 2025
8.3.164 Jul 11, 2025
8.3.163 Jul 08, 2025
8.3.162 Jul 03, 2025
8.3.161 Jun 30, 2025
8.3.160 Jun 27, 2025
8.3.159 Jun 24, 2025
8.3.158 Jun 21, 2025
8.3.157 Jun 20, 2025
8.3.156 Jun 17, 2025
8.3.155 Jun 14, 2025
8.3.154 Jun 12, 2025
8.3.153 Jun 10, 2025
8.3.152 Jun 07, 2025
8.3.151 Jun 05, 2025
8.3.150 Jun 04, 2025
8.3.149 Jun 04, 2025
8.3.148 Jun 03, 2025
8.3.147 Jun 02, 2025
8.3.146 May 27, 2025
8.3.145 May 25, 2025
8.3.144 May 24, 2025
8.3.143 May 22, 2025
8.3.142 May 22, 2025
8.3.141 May 20, 2025
8.3.140 May 19, 2025
8.3.139 May 18, 2025
8.3.138 May 17, 2025
8.3.137 May 16, 2025
8.3.136 May 16, 2025
8.3.135 May 15, 2025
8.3.134 May 14, 2025
8.3.133 May 12, 2025
8.3.132 May 12, 2025
8.3.131 May 10, 2025
8.3.130 May 09, 2025
8.3.129 May 08, 2025
8.3.128 May 06, 2025
8.3.127 May 04, 2025
8.3.126 May 03, 2025
8.3.125 May 03, 2025
8.3.124 May 02, 2025
8.3.123 May 01, 2025
8.3.122 Apr 30, 2025
8.3.121 Apr 29, 2025
8.3.120 Apr 29, 2025
8.3.119 Apr 27, 2025
8.3.118 Apr 26, 2025
8.3.117 Apr 26, 2025
8.3.116 Apr 25, 2025
8.3.115 Apr 23, 2025
8.3.114 Apr 22, 2025
8.3.113 Apr 21, 2025
8.3.112 Apr 21, 2025
8.3.111 Apr 17, 2025
8.3.110 Apr 17, 2025
8.3.109 Apr 15, 2025
8.3.108 Apr 14, 2025
8.3.107 Apr 10, 2025
8.3.106 Apr 10, 2025
8.3.105 Apr 08, 2025
8.3.104 Apr 07, 2025
8.3.103 Apr 06, 2025
8.3.102 Apr 04, 2025
8.3.101 Apr 03, 2025
8.3.100 Apr 01, 2025
8.3.99 Mar 30, 2025
8.3.98 Mar 28, 2025
8.3.97 Mar 27, 2025
8.3.96 Mar 24, 2025
8.3.95 Mar 23, 2025
8.3.94 Mar 20, 2025
8.3.93 Mar 19, 2025
8.3.92 Mar 17, 2025
8.3.91 Mar 15, 2025
8.3.90 Mar 14, 2025
8.3.89 Mar 12, 2025
8.3.88 Mar 11, 2025
8.3.87 Mar 10, 2025
8.3.86 Mar 08, 2025
8.3.85 Mar 06, 2025
8.3.84 Mar 05, 2025
8.3.83 Mar 04, 2025
8.3.82 Mar 02, 2025
8.3.81 Feb 28, 2025
8.3.80 Feb 26, 2025
8.3.79 Feb 25, 2025
8.3.78 Feb 20, 2025
8.3.77 Feb 19, 2025
8.3.76 Feb 18, 2025
8.3.75 Feb 13, 2025
8.3.74 Feb 09, 2025
8.3.73 Feb 07, 2025
8.3.72 Feb 06, 2025
8.3.71 Feb 04, 2025
8.3.70 Jan 30, 2025
8.3.69 Jan 28, 2025
8.3.68 Jan 26, 2025
8.3.67 Jan 24, 2025
8.3.66 Jan 23, 2025
8.3.65 Jan 21, 2025
8.3.64 Jan 19, 2025
8.3.63 Jan 17, 2025
8.3.62 Jan 16, 2025
8.3.61 Jan 13, 2025
8.3.60 Jan 13, 2025
8.3.59 Jan 09, 2025
8.3.58 Jan 05, 2025
8.3.57 Jan 02, 2025
8.3.56 Dec 31, 2024
8.3.55 Dec 26, 2024
8.3.54 Dec 24, 2024
8.3.53 Dec 22, 2024
8.3.52 Dec 20, 2024
8.3.51 Dec 17, 2024
8.3.50 Dec 16, 2024
8.3.49 Dec 10, 2024
8.3.48 Dec 08, 2024
8.3.47 Dec 07, 2024
8.3.44 Dec 06, 2024
8.3.43 Dec 05, 2024
8.3.40 Dec 02, 2024
8.3.39 Nov 28, 2024
8.3.38 Nov 26, 2024
8.3.37 Nov 25, 2024
8.3.36 Nov 22, 2024
8.3.35 Nov 21, 2024
8.3.34 Nov 19, 2024
8.3.33 Nov 18, 2024
8.3.32 Nov 16, 2024
8.3.31 Nov 13, 2024
8.3.30 Nov 13, 2024
8.3.29 Nov 11, 2024
8.3.28 Nov 06, 2024
8.3.27 Nov 01, 2024
8.3.26 Oct 31, 2024
8.3.25 Oct 30, 2024
8.3.24 Oct 28, 2024
8.3.23 Oct 25, 2024
8.3.22 Oct 25, 2024
8.3.21 Oct 23, 2024
8.3.20 Oct 22, 2024
8.3.19 Oct 21, 2024
8.3.18 Oct 19, 2024
8.3.17 Oct 18, 2024
8.3.16 Oct 18, 2024
8.3.15 Oct 17, 2024
8.3.14 Oct 16, 2024
8.3.13 Oct 14, 2024
8.3.12 Oct 13, 2024
8.3.11 Oct 12, 2024
8.3.10 Oct 11, 2024
8.3.9 Oct 09, 2024
8.3.8 Oct 08, 2024
8.3.7 Oct 07, 2024
8.3.6 Oct 06, 2024
8.3.5 Oct 04, 2024
8.3.4 Oct 03, 2024
8.3.3 Oct 01, 2024
8.3.2 Oct 01, 2024
8.3.1 Sep 30, 2024
8.3.0 Sep 30, 2024
8.2.103 Sep 28, 2024
8.2.102 Sep 27, 2024
8.2.101 Sep 25, 2024
8.2.100 Sep 23, 2024
8.2.99 Sep 22, 2024
8.2.98 Sep 19, 2024
8.2.97 Sep 18, 2024
8.2.96 Sep 18, 2024
8.2.95 Sep 16, 2024
8.2.94 Sep 15, 2024
8.2.93 Sep 13, 2024
8.2.92 Sep 11, 2024
8.2.91 Sep 09, 2024
8.2.90 Sep 07, 2024
8.2.89 Sep 06, 2024
8.2.88 Sep 05, 2024
8.2.87 Sep 03, 2024
8.2.86 Sep 01, 2024
8.2.85 Sep 01, 2024
8.2.84 Aug 30, 2024
8.2.83 Aug 28, 2024
8.2.82 Aug 25, 2024
8.2.81 Aug 23, 2024
8.2.80 Aug 22, 2024
8.2.79 Aug 19, 2024
8.2.78 Aug 15, 2024
8.2.77 Aug 13, 2024
8.2.76 Aug 11, 2024
8.2.75 Aug 09, 2024
8.2.74 Aug 06, 2024
8.2.73 Aug 05, 2024
8.2.72 Aug 03, 2024
8.2.71 Aug 01, 2024
8.2.70 Jul 30, 2024
8.2.69 Jul 29, 2024
8.2.68 Jul 28, 2024
8.2.67 Jul 27, 2024
8.2.66 Jul 25, 2024
8.2.65 Jul 25, 2024
8.2.64 Jul 23, 2024
8.2.63 Jul 22, 2024
8.2.62 Jul 22, 2024
8.2.61 Jul 20, 2024
8.2.60 Jul 18, 2024
8.2.59 Jul 17, 2024
8.2.58 Jul 15, 2024
8.2.57 Jul 14, 2024
8.2.56 Jul 13, 2024
8.2.55 Jul 12, 2024
8.2.54 Jul 11, 2024
8.2.53 Jul 10, 2024
8.2.52 Jul 10, 2024
8.2.51 Jul 08, 2024
8.2.50 Jul 05, 2024
8.2.49 Jul 04, 2024
8.2.48 Jun 29, 2024
8.2.47 Jun 29, 2024
8.2.46 Jun 28, 2024
8.2.45 Jun 26, 2024
8.2.44 Jun 26, 2024
8.2.43 Jun 26, 2024
8.2.42 Jun 24, 2024
8.2.41 Jun 23, 2024
8.2.40 Jun 23, 2024
8.2.39 Jun 22, 2024
8.2.38 Jun 20, 2024
8.2.37 Jun 20, 2024
8.2.36 Jun 19, 2024
8.2.35 Jun 17, 2024
8.2.34 Jun 16, 2024
8.2.33 Jun 16, 2024
8.2.32 Jun 14, 2024
8.2.31 Jun 11, 2024
8.2.30 Jun 10, 2024
8.2.29 Jun 08, 2024
8.2.28 Jun 02, 2024
8.2.27 May 31, 2024
8.2.26 May 30, 2024
8.2.25 May 29, 2024
8.2.24 May 28, 2024
8.2.23 May 27, 2024
8.2.22 May 25, 2024
8.2.21 May 24, 2024
8.2.20 May 23, 2024
8.2.19 May 22, 2024
8.2.18 May 18, 2024
8.2.17 May 17, 2024
8.2.16 May 15, 2024
8.2.15 May 13, 2024
8.2.14 May 12, 2024
8.2.13 May 11, 2024
8.2.12 May 10, 2024
8.2.11 May 08, 2024
8.2.10 May 06, 2024
8.2.9 May 05, 2024
8.2.8 May 03, 2024
8.2.7 May 03, 2024
8.2.6 May 01, 2024
8.2.5 Apr 29, 2024
8.2.4 Apr 27, 2024
8.2.3 Apr 26, 2024
8.2.2 Apr 19, 2024
8.2.1 Apr 18, 2024
8.2.0 Apr 17, 2024
8.1.47 Apr 11, 2024
8.1.46 Apr 10, 2024
8.1.45 Apr 07, 2024
8.1.44 Apr 06, 2024
8.1.43 Apr 05, 2024
8.1.42 Apr 02, 2024
8.1.41 Apr 01, 2024
8.1.40 Mar 31, 2024
8.1.39 Mar 31, 2024
8.1.38 Mar 30, 2024
8.1.37 Mar 29, 2024
8.1.36 Mar 28, 2024
8.1.35 Mar 27, 2024
8.1.34 Mar 25, 2024
8.1.33 Mar 24, 2024
8.1.32 Mar 23, 2024
8.1.31 Mar 22, 2024
8.1.30 Mar 20, 2024
8.1.29 Mar 16, 2024
8.1.28 Mar 15, 2024
8.1.27 Mar 11, 2024
8.1.26 Mar 10, 2024
8.1.25 Mar 09, 2024
8.1.24 Mar 05, 2024
8.1.23 Mar 04, 2024
8.1.22 Mar 04, 2024
8.1.21 Mar 03, 2024
8.1.20 Mar 01, 2024
8.1.19 Feb 26, 2024
8.1.18 Feb 22, 2024
8.1.17 Feb 21, 2024
8.1.16 Feb 19, 2024
8.1.15 Feb 17, 2024
8.1.14 Feb 14, 2024
8.1.13 Feb 13, 2024
8.1.12 Feb 13, 2024
8.1.11 Feb 09, 2024
8.1.10 Feb 07, 2024
8.1.9 Feb 01, 2024
8.1.8 Jan 30, 2024
8.1.7 Jan 28, 2024
8.1.6 Jan 25, 2024
8.1.5 Jan 23, 2024
8.1.4 Jan 21, 2024
8.1.3 Jan 19, 2024
8.1.2 Jan 15, 2024
8.1.1 Jan 12, 2024
8.1.0 Jan 10, 2024
8.0.239 Jan 10, 2024
8.0.238 Jan 08, 2024
8.0.237 Jan 07, 2024
8.0.236 Jan 06, 2024
8.0.235 Jan 05, 2024
8.0.234 Jan 03, 2024
8.0.233 Jan 03, 2024
8.0.232 Jan 01, 2024
8.0.231 Dec 28, 2023
8.0.230 Dec 27, 2023
8.0.229 Dec 22, 2023
8.0.228 Dec 19, 2023
8.0.227 Dec 12, 2023
8.0.226 Dec 10, 2023
8.0.225 Dec 08, 2023
8.0.224 Dec 08, 2023
8.0.223 Dec 07, 2023
8.0.222 Dec 03, 2023
8.0.221 Nov 30, 2023
8.0.220 Nov 29, 2023
8.0.219 Nov 27, 2023
8.0.218 Nov 25, 2023
8.0.217 Nov 24, 2023
8.0.216 Nov 22, 2023
8.0.215 Nov 20, 2023
8.0.214 Nov 20, 2023
8.0.213 Nov 20, 2023
8.0.212 Nov 18, 2023
8.0.211 Nov 16, 2023
8.0.210 Nov 15, 2023
8.0.209 Nov 13, 2023
8.0.208 Nov 08, 2023
8.0.207 Nov 05, 2023
8.0.206 Nov 04, 2023
8.0.205 Nov 02, 2023
8.0.204 Nov 02, 2023
8.0.203 Oct 29, 2023
8.0.202 Oct 26, 2023
8.0.201 Oct 24, 2023
8.0.200 Oct 18, 2023
8.0.199 Oct 15, 2023
8.0.198 Oct 13, 2023
8.0.197 Oct 13, 2023
8.0.196 Oct 09, 2023
8.0.195 Oct 07, 2023
8.0.194 Oct 06, 2023
8.0.193 Oct 04, 2023
8.0.192 Oct 03, 2023
8.0.191 Oct 02, 2023
8.0.190 Sep 29, 2023
8.0.189 Sep 28, 2023
8.0.188 Sep 26, 2023
8.0.187 Sep 26, 2023
8.0.186 Sep 24, 2023
8.0.185 Sep 24, 2023
8.0.184 Sep 21, 2023
8.0.183 Sep 20, 2023
8.0.182 Sep 19, 2023
8.0.181 Sep 18, 2023
8.0.180 Sep 15, 2023
8.0.179 Sep 15, 2023
8.0.178 Sep 13, 2023
8.0.177 Sep 13, 2023
8.0.176 Sep 12, 2023
8.0.175 Sep 10, 2023
8.0.174 Sep 10, 2023
8.0.173 Sep 07, 2023
8.0.172 Sep 06, 2023
8.0.171 Sep 05, 2023
8.0.170 Sep 04, 2023
8.0.169 Sep 02, 2023
8.0.168 Aug 31, 2023
8.0.167 Aug 30, 2023
8.0.166 Aug 29, 2023
8.0.165 Aug 29, 2023
8.0.164 Aug 27, 2023
8.0.163 Aug 26, 2023
8.0.162 Aug 24, 2023
8.0.161 Aug 23, 2023
8.0.160 Aug 23, 2023
8.0.159 Aug 21, 2023
8.0.158 Aug 20, 2023
8.0.157 Aug 17, 2023
8.0.156 Aug 16, 2023
8.0.155 Aug 15, 2023
8.0.154 Aug 13, 2023
8.0.153 Aug 12, 2023
8.0.152 Aug 10, 2023
8.0.151 Aug 09, 2023
8.0.150 Aug 08, 2023
8.0.149 Aug 06, 2023
8.0.148 Aug 05, 2023
8.0.147 Aug 02, 2023
8.0.146 Aug 01, 2023
8.0.145 Jul 30, 2023
8.0.144 Jul 29, 2023
8.0.143 Jul 26, 2023
8.0.142 Jul 25, 2023
8.0.141 Jul 23, 2023
8.0.140 Jul 22, 2023
8.0.139 Jul 21, 2023
8.0.138 Jul 19, 2023
8.0.137 Jul 18, 2023
8.0.136 Jul 16, 2023
8.0.135 Jul 14, 2023
8.0.134 Jul 13, 2023
8.0.133 Jul 12, 2023
8.0.132 Jul 10, 2023
8.0.131 Jul 08, 2023
8.0.130 Jul 07, 2023
8.0.129 Jul 07, 2023
8.0.128 Jul 05, 2023
8.0.127 Jul 05, 2023
8.0.126 Jul 04, 2023
8.0.125 Jul 03, 2023
8.0.124 Jun 27, 2023
8.0.123 Jun 25, 2023
8.0.122 Jun 24, 2023
8.0.121 Jun 21, 2023
8.0.120 Jun 19, 2023
8.0.119 Jun 18, 2023
8.0.118 Jun 16, 2023
8.0.117 Jun 12, 2023
8.0.116 Jun 11, 2023
8.0.115 Jun 09, 2023
8.0.114 Jun 05, 2023
8.0.113 Jun 04, 2023
8.0.112 May 31, 2023
8.0.111 May 30, 2023
8.0.110 May 28, 2023
8.0.109 May 25, 2023
8.0.108 May 24, 2023
8.0.107 May 23, 2023
8.0.106 May 22, 2023
8.0.105 May 17, 2023
8.0.104 May 17, 2023
8.0.103 May 15, 2023
8.0.102 May 15, 2023
8.0.101 May 15, 2023
8.0.100 May 14, 2023
8.0.99 May 12, 2023
8.0.98 May 10, 2023
8.0.97 May 09, 2023
8.0.96 May 08, 2023
8.0.95 May 08, 2023
8.0.94 May 08, 2023
8.0.93 May 05, 2023
8.0.92 May 03, 2023
8.0.91 May 01, 2023
8.0.90 Apr 29, 2023
8.0.89 Apr 27, 2023
8.0.88 Apr 26, 2023
8.0.87 Apr 24, 2023
8.0.86 Apr 23, 2023
8.0.85 Apr 23, 2023
8.0.84 Apr 21, 2023
8.0.83 Apr 19, 2023
8.0.82 Apr 18, 2023
8.0.81 Apr 16, 2023
8.0.80 Apr 16, 2023
8.0.79 Apr 16, 2023
8.0.78 Apr 14, 2023
8.0.77 Apr 13, 2023
8.0.76 Apr 13, 2023
8.0.75 Apr 13, 2023
8.0.74 Apr 11, 2023
8.0.73 Apr 10, 2023
8.0.72 Apr 09, 2023
8.0.71 Apr 08, 2023
8.0.70 Apr 07, 2023
8.0.69 Apr 07, 2023
8.0.68 Apr 06, 2023
8.0.67 Apr 06, 2023
8.0.66 Apr 05, 2023
8.0.65 Apr 05, 2023
8.0.64 Apr 05, 2023
8.0.63 Apr 05, 2023
8.0.62 Apr 05, 2023
8.0.61 Apr 03, 2023
8.0.60 Apr 03, 2023
8.0.59 Mar 31, 2023
8.0.58 Mar 26, 2023
8.0.57 Mar 24, 2023
8.0.56 Mar 23, 2023
8.0.55 Mar 20, 2023
8.0.54 Mar 16, 2023
8.0.53 Mar 12, 2023
8.0.52 Mar 10, 2023
8.0.51 Mar 07, 2023
8.0.50 Mar 06, 2023
8.0.49 Mar 02, 2023
8.0.48 Feb 28, 2023
8.0.47 Feb 26, 2023
8.0.46 Feb 25, 2023
8.0.45 Feb 24, 2023
8.0.44 Feb 24, 2023
8.0.43 Feb 21, 2023
8.0.42 Feb 20, 2023
8.0.41 Feb 20, 2023
8.0.40 Feb 17, 2023
8.0.39 Feb 15, 2023
8.0.38 Feb 14, 2023
8.0.37 Feb 14, 2023
8.0.36 Feb 13, 2023
8.0.35 Feb 11, 2023
8.0.34 Feb 10, 2023
8.0.33 Feb 09, 2023
8.0.32 Feb 08, 2023
8.0.31 Feb 07, 2023
8.0.30 Feb 06, 2023
8.0.29 Feb 05, 2023
8.0.28 Feb 04, 2023
8.0.27 Feb 03, 2023
8.0.26 Feb 02, 2023
8.0.25 Jan 30, 2023
8.0.24 Jan 29, 2023
8.0.23 Jan 29, 2023
8.0.22 Jan 28, 2023
8.0.21 Jan 26, 2023
8.0.20 Jan 25, 2023
8.0.19 Jan 25, 2023
8.0.18 Jan 23, 2023
8.0.17 Jan 23, 2023
8.0.16 Jan 22, 2023
8.0.15 Jan 22, 2023
8.0.14 Jan 21, 2023
8.0.13 Jan 21, 2023
8.0.12 Jan 20, 2023
8.0.11 Jan 19, 2023
8.0.10 Jan 18, 2023
8.0.9 Jan 18, 2023
8.0.8 Jan 17, 2023
8.0.7 Jan 17, 2023
8.0.6 Jan 14, 2023
8.0.5 Jan 12, 2023
8.0.4 Jan 11, 2023
8.0.3 Jan 10, 2023
8.0.2 Jan 10, 2023
8.0.1 Jan 10, 2023
8.0.0 Jan 10, 2023
0.0.44 Nov 11, 2022
0.0.43 Nov 09, 2022
0.0.42 Nov 08, 2022
0.0.41 Nov 05, 2022
0.0.40 Nov 04, 2022
0.0.39 Nov 04, 2022
0.0.38 Nov 02, 2022
0.0.37 Nov 01, 2022
0.0.36 Oct 30, 2022
0.0.35 Sep 26, 2022
0.0.34 Aug 30, 2022
0.0.33 Aug 29, 2022
0.0.32 Aug 26, 2022
0.0.31 Aug 07, 2022
0.0.30 Aug 06, 2022
0.0.29 Aug 05, 2022
0.0.28 Aug 05, 2022
0.0.27 Aug 03, 2022
0.0.26 Jul 18, 2022
0.0.25 Jul 06, 2022
0.0.24 May 21, 2022
0.0.23 May 14, 2022
0.0.22 May 08, 2022
0.0.21 May 06, 2022
0.0.20 May 06, 2022
0.0.19 Apr 26, 2022
0.0.18 Apr 26, 2022
0.0.17 Apr 25, 2022
0.0.16 Apr 23, 2022
0.0.15 Apr 21, 2022
0.0.14 Apr 04, 2022
0.0.13 Apr 04, 2022

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
filelock (>=3.16.1)
numpy (>=1.23.0)
matplotlib (>=3.3.0)
opencv-python (!=4.13.0.90,>=4.6.0)
pillow (>=7.1.2)
pyyaml (>=5.3.1)
requests (>=2.23.0)
torch (>=1.8.0)
torch (!=2.4.0,>=1.8.0)
torchvision (>=0.9.0)
psutil (>=5.8.0)
polars (>=0.20.0)
nvidia-ml-py (>=12.0.0)
ultralytics-thop (>=2.1.6)