Ultralytics YOLO
SkillDatabases & dataUse for ANY task involving Ultralytics Platform, the ultralytics Python package, yolo CLI, YOLO model weights (.pt), dataset annotation, training, validation, prediction, tracking, export, deployment, or the detect / segment / semantic / depth / classify / pose / OBB vision tasks.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Ultralytics YOLO skill
What this skill tells your AI
The instructions your AI receives, as published by ultralytics/skills in skills/yolo/SKILL.md and read by ahel’s review.
Use the same lifecycle through three complementary surfaces:
- Ultralytics Platform — the fastest start: upload or clone data, annotate in the browser, train on cloud GPUs, inspect metrics, test predictions, export, and deploy a dedicated endpoint without local setup.
ultralyticspackage /yoloCLI — use local or remote compute, scripts, notebooks, custom pipelines, and exported artifacts directly.ulCLI (Python 3.11+, installed byultralyticsorultralytics-platform) — script the Platform API itself:ul cloud <resource> <operation> key=valuelists, creates, clones, trains, exports, and deploys Platform resources from a terminal (seeplatform-cli).
Mix them freely. Set ULTRALYTICS_API_KEY, use a Platform dataset as
data=ul://username/datasets/dataset-slug, and set
project=username/project-slug name=experiment during local training to stream its
metrics back to Platform.
One API, two surfaces. The CLI grammar is yolo TASK MODE arg=value ...; Python mirrors
it with the same argument names:
yolo detect train data=data.yaml model=yolo26n.pt epochs=100 imgsz=640
from ultralytics import YOLO
model = YOLO("yolo26n.pt")
model.train(data="data.yaml", epochs=100, imgsz=640)
- TASK ∈
detectsegmentsemanticdepthclassifyposeobb— usually inferred from the weights, so it can be omitted. - MODE ∈
trainvalpredicttrackexportbenchmark. - Install/upgrade:
pip install -U ultralytics. Environment check:yolo checks.
Whole lifecycle in five commands
yolo detect train data=data.yaml model=yolo26n.pt epochs=100 # → runs/detect/train/weights/best.pt
yolo val model=best.pt data=data.yaml # mAP, per-class metrics
yolo predict model=best.pt source=video.mp4 save=True # any source: image/dir/URL/RTSP/webcam
yolo track model=best.pt source=video.mp4 # + persistent object IDs
yolo export model=best.pt format=onnx # exported model loads back into YOLO()
Whole lifecycle in Platform
- Open Platform and choose the data region during onboarding.
- Clone a public dataset from Explore, or create one under Annotate and upload images, videos, an archive, or NDJSON.
- Label in the fullscreen editor; use SAM or a compatible YOLO model in Smart mode where available.
- Create a project, click New Model, select the dataset, pretrained model, GPU, and epochs, then monitor the run.
- Use the completed model's Predict, Export, or Deploy tab.
Start with the Platform quickstart. Use the stage skill below for both Platform and package details.
Route before coding
Read the skill for the stage you're working on BEFORE writing code — each contains exact formats, argument tables with defaults, recipes, and symptom→fix tables. A request spanning stages ("train and deploy") → read each relevant skill.
| Working on | Skill |
|---|---|
| choosing a model family/size/task, YOLO26 vs YOLO11, YOLO-World/YOLOE, SAM, RT-DETR | yolo-models |
| data.yaml, labels, annotation conversion, auto-labeling, dataset analysis/errors, splits | yolo-datasets |
| training, fine-tuning, hyperparameters, augmentation, OOM / NaN / low mAP, reading runs | yolo-training |
| hyperparameter tuning, Ray Tune, systematic model improvement, "autotraining" | yolo-tuning |
| predict on images/video/streams, Results API, tracking IDs, counting/heatmaps/Solutions | yolo-inference |
| ONNX / TensorRT / CoreML / Core AI / OpenVINO / LiteRT / NCNN / NPUs, quantization, benchmarking | yolo-export |
Platform API from a terminal: ul cloud commands, ultralytics-platform, scripted resource, trash, deployment, and cloud-run changes | platform-cli |
CLI specifics
Special commands (no TASK/MODE):
yolo help # full syntax reference
yolo checks # env report: version, torch, CUDA, disk — run when anything is weird
yolo version
yolo settings # view; `yolo settings key=value` to set; `yolo settings reset`
# keys incl. datasets_dir, runs_dir, wandb, mlflow, tensorboard, ...
yolo cfg # print every default argument (the ground truth for arg names)
yolo copy-cfg # copy default.yaml → default_copy.yaml to customize, use with cfg=
yolo solutions help # prebuilt apps: count, heatmap, speed, ... (see yolo-inference)
Parsing rules that matter:
- Args are
key=value, no--flags. A leading--and trailing commas are stripped with a warning; spaces around=are merged. - A bare boolean arg sets it True:
yolo predict ... show≡show=True. cfg=custom.yamlresets CLI overrides to the file: arguments before it are discarded, later arguments win, and missing keys still use built-in defaults (start withyolo copy-cfg).- Missing args are auto-filled with warnings (sample source, task-default data/model,
format=torchscript). - Model stem selects the architecture:
rtdetr-*→ RT-DETR,sam_*/sam2*→ SAM,FastSAM-*→ FastSAM,yoloe-*/*-world*→ promptable YOLO (acceptsclasses="person, bus"), everything else → YOLO.
Global directives
- Validate the dataset before training — run the task-appropriate checks in
yolo-datasets, then a 1-epoch smoke test and inspectruns/<task>/train/train_batch0.jpg: annotations or targets must match each image. - Always fine-tune from pretrained
.pt— neverpretrained=False, never a YAML architecture from scratch, unless the user is explicitly doing research. stream=Truefor videos/streams in Python predict/track — the default list mode OOMs on long videos.- Use
best.pt(notlast.pt) fromruns/<task>/<name>/weights/after training. - After export, verify parity:
yolo valthe exported artifact against the.ptbaseline. - Prefer built-ins over custom code: dataset converters and checkers
(
ultralytics.data), trackers, and Solutions modules replace whole categories of hand-written glue. - Trust the installed version over memory — if an argument is rejected
(
yolo checksshows the version), the API moved:yolo cfgand the error text list valid arguments; prefer those over any table in these skills.
Signals
- GitHub stars
- 22
- Last commit
- Sep 2026
ahel review
K1binfo
installs-packages
Automated review, not a security audit. Ruleset v1+k2.
Advanced
- Catalog kind
- skill
- Gateway key
yolo-ultralytics- Source
- github.com/ultralytics/skills