yolo-training

yolo-training is a skill for Claude Code, Codex from fcakyon/claude-codex-settings. It costs 124 tokens per session (1,410 once invoked), scanned A, original, Apache-2.0.

A set of instructions for training YOLO26 computer-vision models, which detect objects in images or video. It explains how to read training results before changing settings.

In plain words
What is it for?
Use it to interpret results.csv and confusion matrices, diagnose training curves, and choose changes such as epochs, augmentation, loss weights, learning rate, model size, or image resolution.
Why use it?
It helps distinguish undertraining, overfitting, unsuitable augmentation, learning-rate problems, model-size issues, and data-quality problems.

Skill for Claude CodeCodex

Part of the ultralytics-dev plugin — 2 skills shipped together

About the project

claude-codex-settings is a collection of configurations and reusable extensions for Claude Code, OpenAI Codex, Cursor, and related coding tools. Developers use its skills, commands, hooks, agents, plugins, and MCP servers to shape coding-agent workflows and connect alternative model APIs. The catalogue entries are components of this collection that can be installed into supported coding tools.

fcakyon/claude-codex-settings · 1,127 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/fcakyon/claude-codex-settings/yolo-training
Any agent
npx skills add fcakyon/claude-codex-settings --skill yolo-training
Clone the repo
git clone --depth 1 https://github.com/fcakyon/claude-codex-settings

Made for: Claude Code, Codex.

Or install ultralytics-dev, the plugin that ships this one along with the rest of its 2 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for yolo-training

README.md
[![agentmods](https://agentmods.dev/badge/skills/fcakyon/claude-codex-settings/yolo-training.svg)](https://agentmods.dev/skills/fcakyon/claude-codex-settings/yolo-training)
Your own site
<a href="https://agentmods.dev/skills/fcakyon/claude-codex-settings/yolo-training"><img src="https://agentmods.dev/badge/skills/fcakyon/claude-codex-settings/yolo-training.svg" alt="Measured on agentmods" height="20"></a>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,410 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00124 $0.01410
Opus 5 $0.00062 $0.00705
Sonnet 5 $0.00025 $0.00282
Haiku 4.5 $0.00012 $0.00141

Measured yesterday against content hash 583bc50d6995, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

yolo-training scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/ultralytics-dev/skills/yolo-training/SKILL.md · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

YOLO26 training

Read the run before changing anything. The results.csv and confusion matrix usually name the problem already.

Order of operations

Ordered by cost to try, cheapest first, not by size of the potential win.

  1. Epochs and schedule. Undertrained looks like every other problem, and it costs nothing but time to rule out.
  2. Augmentation. The knob for the generalization gap, at no extra compute per epoch.
  3. Loss weights and LR. Cheap, and the curves usually say which one is wrong.
  4. Model size. Scale up when train loss is still falling at the end of the schedule and the train and val curves sit close together. That is underfitting, and it is the only case a bigger model reliably fixes.
  5. Resolution. Compute scales with the square of imgsz, so 640 to 1280 is roughly 4x the training budget, and pretrained weights transfer worse the further you move from the size they were fit at. Justify it with the object sizes in your data, not as a default first move.
  6. Data, label quality and class balance. The highest ceiling and the slowest to move. The package ships no dataset-analysis tooling, so any audit here is your own script plus looking at images. Worth it once the cheap knobs are spent.

Diagnostic loop

import pandas as pd

df = pd.read_csv("runs/detect/train/results.csv")
df.columns = df.columns.str.strip()
print(df.tail(10)[["epoch", "train/box_loss", "val/box_loss", "metrics/mAP50(B)", "metrics/mAP50-95(B)"]])
print("best epoch:", df["metrics/mAP50-95(B)"].idxmax(), "of", len(df))

Then read, in this order:

Read Question it answers
best epoch vs total epochs undertrained, overtrained, or right
train loss vs val loss trend which side of the generalization gap
mAP50 vs mAP50-95 classification and recall vs localization
P vs R at the operating point over-suppression vs over-firing
per-class AP spread one broken class or a general weakness
confusion matrix background row and column false positives vs missed detections

Read the full file on GitHub · 97 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 97 lines · 124 tokens per session scan A 583bc50d6995

Subscribe to this mod's changes

yolo-training is a skill published in the GitHub repository fcakyon/claude-codex-settings (1,127 stars, last pushed today), licensed Apache-2.0. It adds 124 tokens to every session and 1,410 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

voiceprint-tech

你是一位声纹识别系统架构师,以《声纹技术》的工程视角帮助用户完成从算法选型到产品落地的技术决策。声纹识别的成败不只在模型结构,更在预处理、后端评分、部署架构与反欺诈的完整链路。.

kuhung/weread-book-skills · 126 tokens

sqlite-vec-skilld

ALWAYS use when writing code importing "sqlite-vec". Consult for debugging, best practices, or modifying sqlite-vec, sqlite vec.

skilld-dev/skilld · 35 tokens

sgc-install-ai

为现有或新 App 快速初始化可上线的 AI 功能,可选择本地 Agent Client、MaaS 中转渠道、模型偏好和配套 UI。用户说集成 AI、给 App 加聊天/生成能力、Agent Client、MaaS 或模型选择时使用。.

lovstudio/skills · 68 tokens

template-autoresearch-project

AutoResearch loop exemplar — deterministic ML candidate evaluation, evidence registries, claim ledgers, artifact manifests, readiness gates.

docxology/template · 30 tokens

doc-to-lora-evaluator

Evaluate whether Doc-to-LoRA is the right path for turning documents into parametric memory, and guide a safe proof-of-concept before investing in a full plugin or training pipeline. Use when a user wants to internalize long documents, reduce repeated context costs, compare Doc-to-LoRA against RAG or long-context…

markoblogo/abvx-agent-skills · 85 tokens

bioinformatics-scientist

Use when a task needs the judgment of a Bioinformatics Scientist — designing a differential-expression or GWAS analysis with correct multiple-testing correction, calling and triaging variants from NGS data using genotype-likelihood confidence rather than raw allele counts, interpreting a BLAST/DIAMOND homology search…

wonsukchoi/domain-experts · 168 tokens