NVIDIA and Hugging Face jointly released the deep integration of NeMo Automodel and Diffusers on July 17, pushing diffusion-model training / fine-tuning from "write a new script for each new model" into a "write once, run across the whole Hub" state. The core change is extending NeMo Automodel's training stack from its original LLM/MoE scenarios to flow-matching diffusion models. The base is DTensor + native PyTorch, with all parallel strategies — FSDP2, Tensor Parallel, Expert Parallel, Context Parallel, Pipeline Parallel — switched via YAML, no model code changes required. The model class directly reuses Diffusers' WanTransformer3DModel and FLUXPipeline; the trained checkpoint can immediately run back through DiffusionPipeline for inference, with no format-conversion middle steps. The first batch of official recipes covers the open-source diffusion mainstream: FLUX.1-dev (12B) and FLUX.2-dev (32B) text-to-image, Wan 2.1 1.3B/14B and Wan 2.2 A14B (MoE) text-to-video, HunyuanVideo 1.5 (13B), Qwen-Image (20B MMDiT), all simultaneously supporting Full FT and LoRA. Combined with latent caching + multi-resolution bucketing, the dataset is pre-encoded once and the rest are all model and parallel-strategy knobs. Measurement data comes from an 8×H100 80GB cluster: FLUX.1-dev full fine-tuning 35.51 imgs/s, LoRA r64 53.73 imgs/s; Wan 2.1 14B full 2.107 clips/s; Wan 2.2 A14B high-noise branch 1.73 clips/s; FLUX.2-dev 32B is also on the roadmap. Single-card VRAM peak is mostly under 60GiB, meaning most entries can train on a single 8-card machine. The entire stack is Apache 2.0 open-source, and the Pythonic recipe API is on its way, with the next step putting YAML configuration and programmatic interface side by side. The real value of this set of tools isn't the performance numbers, but turning "fine-tuning" from an engineering task that requires writing a bunch of glue code for each model, into configurable research infrastructure. For LoRA creators and enterprise-customized models it's a direct boon — once a new model hits the Hub, a few lines of YAML lets you start training. NVIDIA takes the "training framework" position on both the LLM and Diffusion sides, pushing the ecosystem moat one notch upstream.