What problem does it solve?
Fine-tuning a 30B-A3B hybrid Mamba-Transformer MoE model involves many failure-prone steps: preparing chat-templated training data, converting checkpoints between Hugging Face and Megatron formats, sizing GPU parallelism, and merging LoRA adapters. This Skill guides a coding agent through the entire Nemotron-3.5 Lightning Text2SQL LoRA cookbook end-to-end, with per-step verification and known-pitfall handling.
Core Features & Use Cases
- Four-step pipeline orchestration: BIRD data preparation (CPU), Hugging Face to Megatron-Bridge checkpoint conversion (CPU), packed-sequence LoRA training (GPU), and adapter merge back to a Hugging Face checkpoint.
- Hardware-aware GPU planning: picks expert-parallel configuration from measured memory/epoch-time tables for 1-8 H100 GPUs, including single-GPU fallback with reduced MTP heads.
- Per-step verification and troubleshooting: sanity checks for each stage plus guidance on expected friction such as slow first iterations, harmless startup log noise, and vLLM serving requirements.
- Use Case: A user with two H100 GPUs asks an agent to fine-tune Nemotron-3.5 Lightning for Text2SQL; the agent gathers the checkpoint path and HF token, runs all four steps, and delivers a merged model that outputs bare SQL.
Quick Start
Ask the agent to run the Nemotron-3.5 Lightning Text2SQL LoRA cookbook on your machine, providing your checkpoint path, GPU count, output directory, and Hugging Face token.