All news briefs
Product update

NeMo AutoModel scales Diffusers fine-tuning from one GPU to a cluster

The story in five sentences

  1. Nvidia and Hugging Face are integrating NeMo AutoModel more closely with Diffusers-format models.
  2. Models should train without checkpoint conversion or a custom rewrite.
  3. Configurable parallelism methods control scaling instead of separate training programs.
  4. Ready-made recipes cover several open image and video model families as well as full fine-tuning and LoRA.
  5. A typed Python API is planned but is not available in the described version.

Full explanation

NeMo AutoModel is an open-source, PyTorch DTensor-based training library that now works directly with models in the Hugging Face Diffusers format. Checkpoints can be loaded from and written back to that ecosystem without a separate conversion step. Supporting a model is meant to require a contained adapter rather than a fully rewritten training program. The integration is published under the Apache 2.0 license.

Scaling is controlled through configuration. The available approaches include FSDP2 plus tensor, expert, context, and pipeline parallelism. The current implementation supports only flow-matching models. Existing recipes cover Wan 2.1, Wan 2.2, FLUX.1, FLUX.2, HunyuanVideo 1.5, and Qwen-Image. Depending on the model, users can perform complete fine-tuning or use LoRA.

The walkthrough fine-tunes FLUX on 78 public-domain Rider-Waite images for 200 steps. It demonstrates the workflow but does not establish general output quality. Reported measurements use eight H100 GPUs with 80 gigabytes of memory and come from the participating vendors. Nvidia and Hugging Face announce a typed recipe API as future work, so that interface should not be described as available in the current release.