6# Vision Model Training on Hugging Face Jobs
7
8Train object detection, image classification, and SAM/SAM2 segmentation models on managed cloud GPUs. No local GPU setup required—results are automatically saved to the Hugging Face Hub.
9
10## When to Use This Skill
11
12Use this skill when users want to:
13- Fine-tune object detection models (D-FINE, RT-DETR v2, DETR, YOLOS) on cloud GPUs or local
14- Fine-tune image classification models (timm: MobileNetV3, MobileViT, ResNet, ViT/DINOv3, or any Transformers classifier) on cloud GPUs or local
15- Fine-tune SAM or SAM2 models for segmentation / image matting using bbox or point prompts
16- Train bounding-box detectors on custom datasets
17- Train image classifiers on custom datasets
18- Train segmentation models on custom mask datasets with prompts
19- Run vision training jobs on Hugging Face Jobs infrastructure
20- Ensure trained vision models are permanently saved to the Hub
21
22## Related Skills
23
24- **hugging-face-jobs** — General HF Jobs infrastructure: token authentication, hardware flavors, timeout management, cost estimation, secrets, environment variables, scheduled jobs, and result persistence. **Refer to the Jobs skill for any non-training-specific Jobs questions** (e.g., "how do secrets work?", "what hardware is available?", "how do I pass tokens?").
25- **hugging-face-model-trainer** — TRL-based language model training (SFT, DPO, GRPO). Use that skill for text/language model fine-tuning.
26
27## Local Script Execution
28
29Helper scripts use PEP 723 inline dependencies. Run them with uv run:
30```bash
31uv run scripts/dataset_inspector.py --dataset username/dataset-name --split train
32uv run scripts/estimate_cost.py --help
33```
34
35## Prerequisites Checklist
36
37Before starting any training job, verify:
38
39### Account & Authentication
40- Hugging Face Account with [Pro](https://hf.co/pro), [Team](https://hf.co/enterprise), or [Enterprise](https://hf.co/enterprise) plan (Jobs require paid plan)
41- Authenticated login: Check with hf_whoami() (tool) or hf auth whoami (terminal)
42- Token has **write** permissions
43- **MUST pass token in job secrets** — see directive #3 below for syntax (MCP tool vs Python API)
44
45### Dataset Requirements — Object Detection
46- Dataset must exist on Hub
47- Annotations must use the objects column with bbox, category (and optionally area) sub-fields
48- Bboxes can be in **xywh (COCO)** or **xyxy (Pascal VOC)** format — auto-detected and converted
49- Categories can be **integers or strings** — strings are auto-remapped to integer IDs
50- image_id column is **optional** — generated automatically if missing
51- **ALWAYS validate unknown datasets** before GPU training (see Dataset Validation section)
52
53### Dataset Requirements — Image Classification
54- Dataset must exist on Hub
55- Must have an **image column** (PIL images) and a **label column** (integer class IDs or strings)
56- The label column can be ClassLabel type (with names) or plain integers/strings — strings are auto-remapped
57- Common column names auto-detected: label, labels, class, fine_label
58- **ALWAYS validate unknown datasets** before GPU training (see Dataset Validation section)
59
60### Dataset Requirements — SAM/SAM2 Segmentation
61- Dataset must exist on Hub
62- Must have an **image column** (PIL images) and a **mask column** (binary ground-truth segmentation mask)
63- Must have a **prompt** — either:
64 - A **prompt column** with JSON containing {"bbox": [x0,y0,x1,y1]} or {"point": [x,y]}
65 - OR a dedicated **bbox** column with [x0,y0,x1,y1] values
66 - OR a dedicated **point** column with [x,y] or [[x,y],...] values
67- Bboxes should be in **xyxy** format (absolute pixel coordinates)
68- Example dataset: merve/MicroMat-mini (image matting with bbox prompts)
69- **ALWAYS validate unknown datasets** before GPU training (see Dataset Validation section)
70
71### Critical Settings
72- **Timeout must exceed expected training time** — Default 30min is TOO SHORT. See directive #6 for recommended values.
73- **Hub push must be enabled** — push_to_hub=True, hub_model_id="username/model-name", token in secrets
74
75## Dataset Validation
76
77**Validate dataset format BEFORE launching GPU training to prevent the #1 cause of training failures: format mismatches.**
78
79**ALWAYS validate for** unknown/custom datasets or any dataset you haven't trained with before. **Skip for** cppe-5 (the default in the training script).
80
81### Running the Inspector
82
83**Option 1: Via HF Jobs (recommended — avoids local SSL/dependency issues):**
84```python
85hf_jobs("uv", {
86 "script": "path/to/dataset_inspector.py",
87 "script_args": ["--dataset", "username/dataset-name", "--split", "train"]
88})
89```
90
91**Option 2: Locally:**
92```bash
93uv run scripts/dataset_inspector.py --dataset username/dataset-name --split train
94```
95
96**Option 3: Via HfApi().run_uv_job() (if hf_jobs MCP unavailable):**
97```python
98from huggingface_hub import HfApi
99api = HfApi()
100api.run_uv_job(
101 script="scripts/dataset_inspector.py",
102 script_args=["--dataset", "username/dataset-name", "--split", "train"],
103 flavor="cpu-basic",
104 timeout=300,
105)
106```
107
108### Reading Results
109
110- **✓ READY** — Dataset is compatible, use directly
111- **✗ NEEDS FORMATTING** — Needs preprocessing (mapping code provided in output)
112
113## Automatic Bbox Preprocessing
114
115The object detection training script (scripts/object_detection_training.py) automatically handles bbox format detection (xyxy→xywh conversion), bbox sanitization, image_id generation, string category→integer remapping, and dataset truncation. **No manual preprocessing needed** — just ensure the dataset has objects.bbox and objects.category columns.
116
117## Training workflow
118
119Copy this checklist and track progress:
120
121```
122Training Progress:
123- [ ] Step 1: Verify prerequisites (account, token, dataset)
124- [ ] Step 2: Validate dataset format (run dataset_inspector.py)
125- [ ] Step 3: Ask user about dataset size and validation split
126- [ ] Step 4: Prepare training script (OD: scripts/object_detection_training.py, IC: scripts/image_classification_training.py, SAM: scripts/sam_segmentation_training.py)
127- [ ] Step 5: Save script locally, submit job, and report details
128```
129
130**Step 1: Verify prerequisites**
131
132Follow the Prerequisites Checklist above.
133
134**Step 2: Validate dataset**
135
136Run the dataset inspector BEFORE spending GPU time. See "Dataset Validation" section above.
137
138**Step 3: Ask user preferences**
139
140ALWAYS use the AskUserQuestion tool with option-style format:
141
142```python
143AskUserQuestion({
144 "questions": [
145 {
146 "question": "Do you want to run a quick test with a subset of the data first?",
147 "header": "Dataset Size",
148 "options": [
149 {"label": "Quick test run (10% of data)", "description": "Faster, cheaper (~30-60 min, ~$2-5) to validate setup"},
150 {"label": "Full dataset (Recommended)", "description": "Complete training for best model quality"}
151 ],
152 "multiSelect": false
153 },
154 {
155 "question": "Do you want to create a validation split from the training data?",
156 "header": "Split data",
157 "options": [
158 {"label": "Yes (Recommended)", "description": "Automatically split 15% of training data for validation"},
159 {"label": "No", "description": "Use existing validation split from dataset"}
160 ],
161 "multiSelect": false
162 },
163 {
164 "question": "Which GPU hardware do you want to use?",
165 "header": "Hardware Flavor",
166 "options": [
167 {"label": "t4-small ($0.40/hr)", "description": "1x T4, 16 GB VRAM — sufficient for all OD models under 100M params"},
168 {"label": "l4x1 ($0.80/hr)", "description": "1x L4, 24 GB VRAM — more headroom for large images or batch sizes"},
169 {"label": "a10g-large ($1.50/hr)", "description": "1x A10G, 24 GB VRAM — faster training, more CPU/RAM"},
170 {"label": "a100-large ($2.50/hr)", "description": "1x A100, 80 GB VRAM — fastest, for very large datasets or image sizes"}
171 ],
172 "multiSelect": false
173 }
174 ]
175})
176```
177
178**Step 4: Prepare training script**
179
180For object detection, use [scripts/object_detection_training.py](scripts/object_detection_training.py) as the production-ready template. For image classification, use [scripts/image_classification_training.py](scripts/image_classification_training.py). For SAM/SAM2 segmentation, use [scripts/sam_segmentation_training.py](scripts/sam_segmentation_training.py). All scripts use HfArgumentParser — all configuration is passed via CLI arguments in script_args, NOT by editing Python variables. For timm model details, see [references/timm_trainer.md](references/timm_trainer.md). For SAM2 training details, see [references/finetune_sam2_trainer.md](references/finetune_sam2_trainer.md).
181
182**Step 5: Save script, submit job, and report**
183
1841. **Save the script locally** to submitted_jobs/ in the workspace root (create if needed) with a descriptive name like training_<dataset>_<YYYYMMDD_HHMMSS>.py. Tell the user the path.
1852. **Submit** using hf_jobs MCP tool (preferred) or HfApi().run_uv_job() — see directive #1 for both methods. Pass all config via script_args.
1863. **Report** the job ID (from .id attribute), monitoring URL, Trackio dashboard (https://huggingface.co/spaces/{username}/trackio), expected time, and estimated cost.
1874. **Wait for user** to request status checks — don't poll automatically. Training jobs run asynchronously and can take hours.
188
189## Critical directives
190
191These rules prevent common failures. Follow them exactly.
192
193### 1. Job submission: hf_jobs MCP tool vs Python API
194
195**hf_jobs() is an MCP tool, NOT a Python function.** Do NOT try to import it from huggingface_hub. Call it as a tool:
196
197```
198hf_jobs("uv", {"script": training_script_content, "flavor": "a10g-large", "timeout": "4h", "secrets": {"HF_TOKEN": "$HF_TOKEN"}})
199```
200
201**If hf_jobs MCP tool is unavailable**, use the Python API directly:
202
203```python
204from huggingface_hub import HfApi, get_token
205api = HfApi()
206job_info = api.run_uv_job(
207 script="path/to/training_script.py", # file PATH, NOT content
208 script_args=["--dataset_name", "cppe-5", ...],
209 flavor="a10g-large",
210 timeout=14400, # seconds (4 hours)
211 env={"PYTHONUNBUFFERED": "1"},
212 secrets={"HF_TOKEN": get_token()}, # MUST use get_token(), NOT "$HF_TOKEN"
213)
214print(f"Job ID: {job_info.id}")
215```
216
217**Critical differences between the two methods:**
218
219| | hf_jobs MCP tool | HfApi().run_uv_job() |
220|---|---|---|
221| script param | Python code string or URL (NOT local paths) | File path to .py file (NOT content) |
222| Token in secrets | "$HF_TOKEN" (auto-replaced) | get_token() (actual token value) |
223| Timeout format | String ("4h") | Seconds (14400) |
224
225**Rules for both methods:**
226- The training script MUST include PEP 723 inline metadata with dependencies
227- Do NOT use image or command parameters (those belong to run_job(), not run_uv_job())
228
229### 2. Authentication via job secrets + explicit hub_token injection
230
231**Job config** MUST include the token in secrets — syntax depends on submission method (see table above).
232
233**Training script requirement:** The Transformers Trainer calls create_repo(token=self.args.hub_token) during __init__() when push_to_hub=True. The training script MUST inject HF_TOKEN into training_args.hub_token AFTER parsing args but BEFORE creating the Trainer. The template scripts/object_detection_training.py already includes this:
234
235```python
236hf_token = os.environ.get("HF_TOKEN")
237if training_args.push_to_hub and not training_args.hub_token:
238 if hf_token:
239 training_args.hub_token = hf_token
240```
241
242If you write a custom script, you MUST include this token injection before the Trainer(...) call.
243
244- Do NOT call login() in custom scripts unless replicating the full pattern from scripts/object_detection_training.py
245- Do NOT rely on implicit token resolution (hub_token=None) — unreliable in Jobs
246- See the hugging-face-jobs skill → *Token Usage Guide* for full details
247
248### 3. JobInfo attribute
249
250Access the job identifier using .id (NOT .job_id or .name — these don't exist):
251
252```python
253job_info = api.run_uv_job(...) # or hf_jobs("uv", {...})
254job_id = job_info.id # Correct -- returns string like "687fb701029421ae5549d998"
255```
256
257### 4. Required training flags and HfArgumentParser boolean syntax
258
259scripts/object_detection_training.py uses HfArgumentParser — all config is passed via script_args. Boolean arguments have two syntaxes:
260
261- **bool fields** (e.g., push_to_hub, do_train): Use as bare flags (--push_to_hub) or negate with --no_ prefix (--no_remove_unused_columns)
262- **Optional[bool] fields** (e.g., greater_is_better): MUST pass explicit value (--greater_is_better True). Bare --greater_is_better causes error: expected one argument
263
264Required flags for object detection:
265
266```
267--no_remove_unused_columns # MUST: preserves image column for pixel_values
268--no_eval_do_concat_batches # MUST: images have different numbers of target boxes
269--push_to_hub # MUST: environment is ephemeral
270--hub_model_id username/model-name
271--metric_for_best_model eval_map
272--greater_is_better True # MUST pass "True" explicitly (Optional[bool])
273--do_train
274--do_eval
275```
276
277Required flags for image classification:
278
279```
280--no_remove_unused_columns # MUST: preserves image column for pixel_values
281--push_to_hub # MUST: environment is ephemeral
282--hub_model_id username/model-name
283--metric_for_best_model eval_accuracy
284--greater_is_better True # MUST pass "True" explicitly (Optional[bool])
285--do_train
286--do_eval
287```
288
289Required flags for SAM/SAM2 segmentation:
290
291```
292--remove_unused_columns False # MUST: preserves input_boxes/input_points
293--push_to_hub # MUST: environment is ephemeral
294--hub_model_id username/model-name
295--do_train
296--prompt_type bbox # or "point"
297--dataloader_pin_memory False # MUST: avoids pin_memory issues with custom collator
298```
299
300### 5. Timeout management
301
302Default 30 min is TOO SHORT for object detection. Set minimum 2-4 hours. Add 30% buffer for model loading, preprocessing, and Hub push.
303
304| Scenario | Timeout |
305|----------|---------|
306| Quick test (100-200 images, 5-10 epochs) | 1h |
307| Development (500-1K images, 15-20 epochs) | 2-3h |
308| Production (1K-5K images, 30 epochs) | 4-6h |
309| Large dataset (5K+ images) | 6-12h |
310
311### 6. Trackio monitoring
312
313Trackio is **always enabled** in the object detection training script — it calls trackio.init() and trackio.finish() automatically. No need to pass --report_to trackio. The project name is taken from --output_dir and the run name from --run_name. For image classification, pass --report_to trackio in TrainingArguments.
314
315Dashboard at: https://huggingface.co/spaces/{username}/trackio
316
317## Model & hardware selection
318
319### Recommended object detection models
320
321| Model | Params | Use case |
322|-------|--------|----------|
323| ustc-community/dfine-small-coco | 10.4M | Best starting point — fast, cheap, SOTA quality |
324| PekingU/rtdetr_v2_r18vd | 20.2M | Lightweight real-time detector |
325| ustc-community/dfine-large-coco | 31.4M | Higher accuracy, still efficient |
326| PekingU/rtdetr_v2_r50vd | 43M | Strong real-time baseline |
327| ustc-community/dfine-xlarge-obj365 | 63.5M | Best accuracy (pretrained on Objects365) |
328| PekingU/rtdetr_v2_r101vd | 76M | Largest RT-DETR v2 variant |
329
330Start with ustc-community/dfine-small-coco for fast iteration. Move to D-FINE Large or RT-DETR v2 R50 for better accuracy.
331
332### Recommended image classification models
333
334All timm/ models work out of the box via AutoModelForImageClassification (loaded as TimmWrapperForImageClassification). See [references/timm_trainer.md](references/timm_trainer.md) for details.
335
336| Model | Params | Use case |
337|-------|--------|----------|
338| timm/mobilenetv3_small_100.lamb_in1k | 2.5M | Ultra-lightweight — mobile/edge, fastest training |
339| timm/mobilevit_s.cvnets_in1k | 5.6M | Mobile transformer — good accuracy/speed trade-off |
340| timm/resnet50.a1_in1k | 25.6M | Strong CNN baseline — reliable, well-studied |
341| timm/vit_base_patch16_dinov3.lvd1689m | 86.6M | Best accuracy — DINOv3 self-supervised ViT |
342
343Start with timm/mobilenetv3_small_100.lamb_in1k for fast iteration. Move to timm/resnet50.a1_in1k or timm/vit_base_patch16_dinov3.lvd1689m for better accuracy.
344
345### Recommended SAM/SAM2 segmentation models
346
347| Model | Params | Use case |
348|-------|--------|----------|
349| facebook/sam2.1-hiera-tiny | 38.9M | Fastest SAM2 — good for quick experiments |
350| facebook/sam2.1-hiera-small | 46.0M | Best starting point — good quality/speed balance |
351| facebook/sam2.1-hiera-base-plus | 80.8M | Higher capacity for complex segmentation |
352| facebook/sam2.1-hiera-large | 224.4M | Best SAM2 accuracy — requires more VRAM |
353| facebook/sam-vit-base | 93.7M | Original SAM — ViT-B backbone |
354| facebook/sam-vit-large | 312.3M | Original SAM — ViT-L backbone |
355| facebook/sam-vit-huge | 641.1M | Original SAM — ViT-H, best SAM v1 accuracy |
356
357Start with facebook/sam2.1-hiera-small for fast iteration. SAM2 models are generally more efficient than SAM v1 at similar quality. Only the mask decoder is trained by default (vision and prompt encoders are frozen).
358
359### Hardware recommendation
360
361All recommended OD and IC models are under 100M params — **t4-small (16 GB VRAM, $0.40/hr) is sufficient for all of them.** Image classification models are generally smaller and faster than object detection models — t4-small handles even ViT-Base comfortably. For SAM2 models up to hiera-base-plus, t4-small is sufficient since only the mask decoder is trained. For sam2.1-hiera-large or SAM v1 models, use l4x1 or a10g-large. Only upgrade if you hit OOM from large batch sizes — reduce batch size first before switching hardware. Common upgrade path: t4-small → l4x1 ($0.80/hr, 24 GB) → a10g-large ($1.50/hr, 24 GB).
362
363For full hardware flavor list: refer to the hugging-face-jobs skill. For cost estimation: run scripts/estimate_cost.py.
364
365## Quick start — Object Detection
366
367The script_args below are the same for both submission methods. See directive #1 for the critical differences between them.
368
369```python
370OD_SCRIPT_ARGS = [
371 "--model_name_or_path", "ustc-community/dfine-small-coco",
372 "--dataset_name", "cppe-5",
373 "--image_square_size", "640",
374 "--output_dir", "dfine_finetuned",
375 "--num_train_epochs", "30",
376 "--per_device_train_batch_size", "8",
377 "--learning_rate", "5e-5",
378 "--eval_strategy", "epoch",
379 "--save_strategy", "epoch",
380 "--save_total_limit", "2",
381 "--load_best_model_at_end",
382 "--metric_for_best_model", "eval_map",
383 "--greater_is_better", "True",
384 "--no_remove_unused_columns",
385 "--no_eval_do_concat_batches",
386 "--push_to_hub",
387 "--hub_model_id", "username/model-name",
388 "--do_train",
389 "--do_eval",
390]
391```
392
393```python
394from huggingface_hub import HfApi, get_token
395api = HfApi()
396job_info = api.run_uv_job(
397 script="scripts/object_detection_training.py",
398 script_args=OD_SCRIPT_ARGS,
399 flavor="t4-small",
400 timeout=14400,
401 env={"PYTHONUNBUFFERED": "1"},
402 secrets={"HF_TOKEN": get_token()},
403)
404print(f"Job ID: {job_info.id}")
405```
406
407### Key OD script_args
408
409- --model_name_or_path — recommended: "ustc-community/dfine-small-coco" (see model table above)
410- --dataset_name — the Hub dataset ID
411- --image_square_size — 480 (fast iteration) or 800 (better accuracy)
412- --hub_model_id — "username/model-name" for Hub persistence
413- --num_train_epochs — 30 typical for convergence
414- --train_val_split — fraction to split for validation (default 0.15), set if dataset lacks a validation split
415- --max_train_samples — truncate training set (useful for quick test runs, e.g. "785" for ~10% of a 7.8K dataset)
416- --max_eval_samples — truncate evaluation set
417
418## Quick start — Image Classification
419
420```python
421IC_SCRIPT_ARGS = [
422 "--model_name_or_path", "timm/mobilenetv3_small_100.lamb_in1k",
423 "--dataset_name", "ethz/food101",
424 "--output_dir", "food101_classifier",
425 "--num_train_epochs", "5",
426 "--per_device_train_batch_size", "32",
427 "--per_device_eval_batch_size", "32",
428 "--learning_rate", "5e-5",
429 "--eval_strategy", "epoch",
430 "--save_strategy", "epoch",
431 "--save_total_limit", "2",
432 "--load_best_model_at_end",
433 "--metric_for_best_model", "eval_accuracy",
434 "--greater_is_better", "True",
435 "--no_remove_unused_columns",
436 "--push_to_hub",
437 "--hub_model_id", "username/food101-classifier",
438 "--do_train",
439 "--do_eval",
440]
441```
442
443```python
444from huggingface_hub import HfApi, get_token
445api = HfApi()
446job_info = api.run_uv_job(
447 script="scripts/image_classification_training.py",
448 script_args=IC_SCRIPT_ARGS,
449 flavor="t4-small",
450 timeout=7200,
451 env={"PYTHONUNBUFFERED": "1"},
452 secrets={"HF_TOKEN": get_token()},
453)
454print(f"Job ID: {job_info.id}")
455```
456
457### Key IC script_args
458
459- --model_name_or_path — any timm/ model or Transformers classification model (see model table above)
460- --dataset_name — the Hub dataset ID
461- --image_column_name — column containing PIL images (default: "image")
462- --label_column_name — column containing class labels (default: "label")
463- --hub_model_id — "username/model-name" for Hub persistence
464- --num_train_epochs — 3-5 typical for classification (fewer than OD)
465- --per_device_train_batch_size — 16-64 (classification models use less memory than OD)
466- --train_val_split — fraction to split for validation (default 0.15), set if dataset lacks a validation split
467- --max_train_samples / --max_eval_samples — truncate for quick tests
468
469## Quick start — SAM/SAM2 Segmentation
470
471```python
472SAM_SCRIPT_ARGS = [
473 "--model_name_or_path", "facebook/sam2.1-hiera-small",
474 "--dataset_name", "merve/MicroMat-mini",
475 "--prompt_type", "bbox",
476 "--prompt_column_name", "prompt",
477 "--output_dir", "sam2-finetuned",
478 "--num_train_epochs", "30",
479 "--per_device_train_batch_size", "4",
480 "--learning_rate", "1e-5",
481 "--logging_steps", "1",
482 "--save_strategy", "epoch",
483 "--save_total_limit", "2",
484 "--remove_unused_columns", "False",
485 "--dataloader_pin_memory", "False",
486 "--push_to_hub",
487 "--hub_model_id", "username/sam2-finetuned",
488 "--do_train",
489 "--report_to", "trackio",
490]
491```
492
493```python
494from huggingface_hub import HfApi, get_token
495api = HfApi()
496job_info = api.run_uv_job(
497 script="scripts/sam_segmentation_training.py",
498 script_args=SAM_SCRIPT_ARGS,
499 flavor="t4-small",
500 timeout=7200,
501 env={"PYTHONUNBUFFERED": "1"},
502 secrets={"HF_TOKEN": get_token()},
503)
504print(f"Job ID: {job_info.id}")
505```
506
507### Key SAM script_args
508
509- --model_name_or_path — SAM or SAM2 model (see model table above); auto-detects SAM vs SAM2
510- --dataset_name — the Hub dataset ID (e.g., "merve/MicroMat-mini")
511- --prompt_type — "bbox" or "point" — type of prompt in the dataset
512- --prompt_column_name — column with JSON-encoded prompts (default: "prompt")
513- --bbox_column_name — dedicated bbox column (alternative to JSON prompt column)
514- --point_column_name — dedicated point column (alternative to JSON prompt column)
515- --mask_column_name — column with ground-truth masks (default: "mask")
516- --hub_model_id — "username/model-name" for Hub persistence
517- --num_train_epochs — 20-30 typical for SAM fine-tuning
518- --per_device_train_batch_size — 2-4 (SAM models use significant memory)
519- --freeze_vision_encoder / --freeze_prompt_encoder — freeze encoder weights (default: both frozen, only mask decoder trains)
520- --train_val_split — fraction to split for validation (default 0.1)
521
522## Checking job status
523
524**MCP tool (if available):**
525```
526hf_jobs("ps") # List all jobs
527hf_jobs("logs", {"job_id": "your-job-id"}) # View logs
528hf_jobs("inspect", {"job_id": "your-job-id"}) # Job details
529```
530
531**Python API fallback:**
532```python
533from huggingface_hub import HfApi
534api = HfApi()
535api.list_jobs() # List all jobs
536api.get_job_logs(job_id="your-job-id") # View logs
537api.get_job(job_id="your-job-id") # Job details
538```
539
540## Common failure modes
541
542### OOM (CUDA out of memory)
543Reduce per_device_train_batch_size (try 4, then 2), reduce IMAGE_SIZE, or upgrade hardware.
544
545### Dataset format errors
546Run scripts/dataset_inspector.py first. The training script auto-detects xyxy vs xywh, converts string categories to integer IDs, and adds image_id if missing. Ensure objects.bbox contains 4-value coordinate lists in absolute pixels and objects.category contains either integer IDs or string labels.
547
548### Hub push failures (401)
549Verify: (1) job secrets include token (see directive #2), (2) script sets training_args.hub_token BEFORE creating the Trainer, (3) push_to_hub=True is set, (4) correct hub_model_id, (5) token has write permissions.
550
551### Job timeout
552Increase timeout (see directive #5 table), reduce epochs/dataset, or use checkpoint strategy with hub_strategy="every_save".
553
554### KeyError: 'test' (missing test split)
555The object detection training script handles this gracefully — it falls back to the validation split. Ensure you're using the latest scripts/object_detection_training.py.
556
557### Single-class dataset: "iteration over a 0-d tensor"
558torchmetrics.MeanAveragePrecision returns scalar (0-d) tensors for per-class metrics when there's only one class. The template scripts/object_detection_training.py handles this by calling .unsqueeze(0) on these tensors. Ensure you're using the latest template.
559
560### Poor detection performance (mAP < 0.15)
561Increase epochs (30-50), ensure 500+ images, check per-class mAP for imbalanced classes, try different learning rates (1e-5 to 1e-4), increase image size.
562
563For comprehensive troubleshooting: see [references/reliability_principles.md](references/reliability_principles.md)
564
565## Reference files
566
567- [scripts/object_detection_training.py](scripts/object_detection_training.py) — Production-ready object detection training script
568- [scripts/image_classification_training.py](scripts/image_classification_training.py) — Production-ready image classification training script (supports timm models)
569- [scripts/sam_segmentation_training.py](scripts/sam_segmentation_training.py) — Production-ready SAM/SAM2 segmentation training script (bbox & point prompts)
570- [scripts/dataset_inspector.py](scripts/dataset_inspector.py) — Validate dataset format for OD, classification, and SAM segmentation
571- [scripts/estimate_cost.py](scripts/estimate_cost.py) — Estimate training costs for any vision model (includes SAM/SAM2)
572- [references/object_detection_training_notebook.md](references/object_detection_training_notebook.md) — Object detection training workflow, augmentation strategies, and training patterns
573- [references/image_classification_training_notebook.md](references/image_classification_training_notebook.md) — Image classification training workflow with ViT, preprocessing, and evaluation
574- [references/finetune_sam2_trainer.md](references/finetune_sam2_trainer.md) — SAM2 fine-tuning walkthrough with MicroMat dataset, DiceCE loss, and Trainer integration
575- [references/timm_trainer.md](references/timm_trainer.md) — Using timm models with HF Trainer (TimmWrapper, transforms, full example)
576- [references/hub_saving.md](references/hub_saving.md) — Detailed Hub persistence guide and verification checklist
577- [references/reliability_principles.md](references/reliability_principles.md) — Failure prevention principles from production experience
578
579## External links
580
581- [Transformers Object Detection Guide](https://huggingface.co/docs/transformers/tasks/object_detection)
582- [Transformers Image Classification Guide](https://huggingface.co/docs/transformers/tasks/image_classification)
583- [DETR Model Documentation](https://huggingface.co/docs/transformers/model_doc/detr)
584- [ViT Model Documentation](https://huggingface.co/docs/transformers/model_doc/vit)
585- [HF Jobs Guide](https://huggingface.co/docs/huggingface_hub/guides/jobs) — Main Jobs documentation
586- [HF Jobs Configuration](https://huggingface.co/docs/hub/en/jobs-configuration) — Hardware, secrets, timeouts, namespaces
587- [HF Jobs CLI Reference](https://huggingface.co/docs/huggingface_hub/guides/cli#hf-jobs) — Command line interface
588- [Object Detection Models](https://huggingface.co/models?pipeline_tag=object-detection)
589- [Image Classification Models](https://huggingface.co/models?pipeline_tag=image-classification)
590- [SAM2 Model Documentation](https://huggingface.co/docs/transformers/model_doc/sam2)
591- [SAM Model Documentation](https://huggingface.co/docs/transformers/model_doc/sam)
592- [Object Detection Datasets](https://huggingface.co/datasets?task_categories=task_categories:object-detection)
593- [Image Classification Datasets](https://huggingface.co/datasets?task_categories=task_categories:image-classification)
594