AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Active Learning

skill-macroman5-autotrain-yolo-active-learning · by MacroMan5

Orchestrate the full active learning loop: train, analyze, push to CVAT, wait for review, pull, merge, retrain.

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-macroman5-autotrain-yolo-active-learning

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-macroman5-autotrain-yolo-active-learning)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Active Learning? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Active Learning Loop

Orchestrate the complete cycle of model improvement through human feedback: train -> analyze -> push uncertain images to CVAT -> wait for human review -> pull corrections -> merge -> retrain.

Workflow

1. Check Current State

Determine where we are in the loop:

Has baseline run?
├── No → Run: /experiment baseline
└── Yes → Continue

Has analysis been run?
├── No → Run: /analyze
└── Yes → Continue

Has uncertain_images.txt?
├── No → Run: yolo-analyze --model  --dataset 
└── Yes → Continue

2. Push Uncertain Images to CVAT

Use the /cvat-push skill:

yolo-cvat push --from-analysis reports/uncertain_images.txt

3. Wait for Human Review

Tell the user:

Images have been pushed to CVAT for review.
Please annotate/correct the images in CVAT, then tell me when you're done.

CVAT tasks: [list task IDs and URLs]
Images to review: [count]
Priority: [false negatives first, then uncertain]

Do NOT proceed until the user confirms annotations are complete.

4. Pull Corrected Annotations

When the user says annotations are done:

yolo-cvat pull --task  --output datasets/corrected_batch_N
yolo-validate datasets/corrected_batch_N

5. Merge with Existing Dataset

yolo-merge --sources   --output 
yolo-validate 

5b. Re-Profile After Merge

Run /review-dataset to update the dataset profile in training-plan.md. The profile may have changed (new class distribution, different object sizes). The experiment reasoning loop needs current data.

6. Retrain

Delegate training decisions to the refactored /experiment skill. The reasoning loop will use the updated dataset profile to decide what to try.

/experiment

7. Compare Before/After

Compare metrics from before and after the new data:

  • Overall mAP50-95 change
  • Per-class AP changes
  • Specifically check classes that had false negatives

8. Write Active Learning Report

Create experiments/active_learning_log.md:

## Active Learning Iteration N
- Date: YYYY-MM-DD
- Images added/corrected: X
- mAP50-95 before: X.XXXX
- mAP50-95 after: X.XXXX
- Delta: +/- X.XXXX
- Classes most improved: [list]
- Next action: [recommendation]

Decision Tree

First iteration ever?
├── Yes → Establish baseline first, then analyze
└── No → Check if previous iteration improved metrics

Metrics improved after new data?
├── Yes → Deploy updated model to CVAT (/cvat-deploy)
│         Continue to next iteration
└── No → Investigate:
         ├── Data quality issue? → Review annotations more carefully
         ├── Overfitting to corrections? → Increase augmentation
         └── Plateaued? → Suggest dataset expansion or architecture change

More than 3 iterations with <0.5% improvement?
├── Yes → Suggest stopping: diminishing returns
└── No → Continue loop

Guardrails

  • NEVER skip the merge validation step — corrupted merges ruin models
  • ALWAYS compare metrics before and after new data is added
  • Document every iteration in experiments/active_learning_log.md
  • If metrics regress after adding data, STOP and investigate before continuing
  • Maximum recommended batch: 200 images per iteration (annotator fatigue)
  • Wait for user confirmation at every human-in-the-loop step

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.