Troubleshooting NeMo Customizer
Job fails during model download:
- Verify the Hugging Face token secret is configured correctly
- Accept the model’s license on the Hugging Face model page
- Check job status:
client.jobs.get_status(name=job.name, workspace="default")
Job fails with disk full or 500 error when retrieving logs:
- The platform’s shared persistent volume is likely full. Budget against the downloaded base checkpoint size: approximately 3× for Full SFT and 1.5× for LoRA. For example, a 70B BF16 checkpoint is approximately 140 GB, so a Full SFT job can require approximately 420 GB of free disk at peak.
- These peak estimates include the base checkpoint and job artifacts; the final Full SFT output itself is one full checkpoint. If you also retain a deployment copy, include it separately in capacity planning.
- Clean up completed job artifacts or increase the PVC size (default: 200Gi at
/var/run/scratch/job). - See ft-tut-understand-models for full storage requirement details.
Job fails with OOM (Out of Memory):
Batch and sequence-length fields differ by backend. Use the fully qualified paths for your backend:
- Automodel (
AutomodelJobInput):- Reduce
batch.micro_batch_sizeto 1 - Reduce
batch.global_batch_size - Reduce
training.max_seq_lengthfrom 2048 to 1024 or 512
- Reduce
- Unsloth (
UnslothJobInput):- Reduce
batch.per_device_train_batch_sizeto 1 - Reduce
batch.gradient_accumulation_steps(or lowertraining.lora.rank) - Reduce
model.max_seq_lengthfrom 2048 to 1024 or 512
- Reduce
Training loss not decreasing:
- Increase
optimizer.learning_rate(try 2e-4 or 5e-4), same path for Automodel and Unsloth - Increase
schedule.epochs, same path for Automodel and Unsloth - Verify data quality — inspect a few training examples manually
Tool calling accuracy is low after fine-tuning:
- Increase training data size (sample more from the filtered dataset)
- Increase
schedule.epochsto a higher value. If you are running for 1-2 epochs, increase it to 3-4. - Check that the evaluation dataset format matches what the model expects
- Verify the base model supports tool calling (Llama 3.2 Instruct does)
Deployment fails:
- Verify the base model and adapter exist:
client.models.retrieve(name=MODEL_NAME, workspace="default")— the LoRA adapter appears in the base model’sadapterslist, not as a separate model entity - Check deployment logs:
client.inference.deployments.get_logs(name=deployment.name, workspace="default") - Ensure sufficient GPU resources for the model size