npx skills add nvidia/skills --skill tao-train-single-step
promptingcompany/nv-skills
tao-train-single-step
Standard single-step train/eval/export workflow for any TAO model. Use when training a TAO model on a dataset without iterative data augmentation, AutoML, or DEFT loops. Trigger phrases include "single train run", "train then evaluate then export", "plain TAO training", "normal training", "no AutoML", "skip the loop". Routes through the per-model SKILL.md for action specifics and through `tao-launch-workflow` for platform/credentials/dataset intake.
Installation
npx skills add promptingcompany/nv-skills --skill tao-train-single-step
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Standard single-step train/eval/export workflow for any TAO model. Use when training a TAO mode…
1.5K installsHelps users discover and install agent skills when they ask questions like "how do I do X", "fi…
3.3M installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsAlso in this package
Other skills from promptingcompany/nv-skills · top by installs.
npx skills add promptingcompany/nv-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Read Bash WriteMore metadata
- author
- NVIDIA Corporation
- version
- 0.1.0
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md3,920 B -
docs
SUMMARY.md482 B
History
- First seen on skills.sh
- First recorded snapshot · 39 installs
SKILL.md
Normal Train
Standard supervised fine-tuning: train a model on a labeled dataset, optionally evaluate, then optionally export. The most common TAO workflow for adapting a pretrained model to a new dataset.
Steps
- train — executed through AutoML when the selected model has
automlenabled: true and automlpolicy is on; set automl_policy=off for a plain single training run
- eval — executed if
evaldataseturiis resolved - export — optional, on user request after training
Prerequisites
Required
- model: A compatible TAO model (e.g., clip, nvdinov2, grounding_dino)
- traindataseturi: URI of the training dataset (e.g.,
s3://bucket/train/) - platform: Ask from the generated supported-platform list:
${TAOSKILLBANKPATH:-~/tao-skills-external}/scripts/listtao_platforms.py --format text
- container image confirmation: resolve the default image from the selected
model/action config, show it to the user, and require confirmation or image=<override> before creating runner files or submitting training.
Optional
- evaldataseturi: Some model skills mark this as required — check the resolved model skill before treating it as optional.
- base_checkpoint: If not provided, defaults to the NGC pretrained checkpoint listed in the model skill, or trains from scratch if no NGC checkpoint exists.
- automl_policy:
onby default; setoffto bypass model-level AutoML for this run while leaving model metadata unchanged. Use onlyon/offin new launch settings. - image override: Use
image=<override>to pin a specific TAO toolkit build
after reviewing the resolved default.
Launch Intake
After the user confirms they want this standard train/eval/export workflow, ask which supported platform they intend to run on. Generate the choices with scripts/listtaoplatforms.py --format text; do not scan platform docs or folders.
Before creating a plain train runner, inspect the selected model's metadata with scripts/listtaomodels.py --scope automl --format json or read skills/models/<network>/references/skillinfo.yaml. If automlenabled is true and the helper reports a valid train schema for that model, route the train stage through skills/applications/tao-run-automl by default. Only stay on the plain train path when automl_policy=off, the user explicitly asks for no HPO/AutoML, or AutoML is enabled but not runnable because the model's train schema is not packaged yet.
Also ask whether long-running monitoring should stay enabled and how many minutes between status updates. Defaults: enabled, 5 minutes.
After the model/action are known, run scripts/resolvetaoimage.py --model <network> --action train --format text and ask whether to use the resolved image or an image=<override>. Do not create the tao-train-single-step runner until the image is confirmed.
After platform selection, run scripts/listtaoplatforms.py --platform <platform> --format text and ask only for credentials relevant to that platform, plus any selected-model credentials. Do not ask for unrelated platform credentials.