"Routes AXLearn vision model configs, ImageNet inputs, and
Scanned 9/8/2026
Install to Claude Code
npx -y skills add VectorSpaceLab/AREX-Skill --skill vision-workflows --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vision Workflows?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vectorspacelab-vision-workflows)More formats (shields.io, HTML) on the badges page.
---
name: vision-workflows
description: "Routes AXLearn vision model configs, ImageNet inputs, and
ResNet/CLIP-style recipes."
disable-model-invocation: true
metadata:
disco-role: operating
license: Apache 2.0
---
# vision-workflows
Use this sub-skill for AXLearn's image-centric workflows.
Typical triggers:
- ImageNet, ResNet, ImageClassificationModel, or `ImagenetInput`.
- CLIP, CoCa, CyCLIP, or other vision-language model helpers.
- Image preprocessing, fake image datasets, crop/augment/whiten helpers, or vision trainer configs.
If the task is only about shared trainer plumbing, use `../training-core/` first.
If the task is about `axlearn gcp ...`, use `../cli-cloud/`.
If the task is about ASR, use `../audio-asr/`.
## What to read
- `references/workflows.md` for ImageNet and model-builder workflows.
- `references/troubleshooting.md` for fake-data, dataset, and shape issues.
- `scripts/inspect_vision_configs.py` for a safe config-inspection helper.
## Common routes
### Inspect a ResNet trainer catalog
```bash
python scripts/inspect_vision_configs.py --module axlearn.experiments.vision.resnet.imagenet_trainer --config ResNet-Test
```
### Run a CPU-safe fake-data probe
Use `DATA_DIR=FAKE` so the ImageNet helpers switch to synthetic inputs.
### Inspect the image-classification model API
The central model is `ImageClassificationModel`, which wraps a backbone plus classifier head.
The `ResNet` family provides backbone configs such as `resnet18_config()` and `resnet50_config()`.
## Decision points
- Choose this sub-skill when the user names a specific image-classification model or ImageNet recipe.
- Keep shared trainer mechanics in `training-core`.
- Do not route speech or GPT catalogs here just because they also use `SpmdTrainer`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!