Tutorials
These tutorials demonstrate how to build Data Designer configurations and execute them through the NeMo Data Designer plugin.
Configuration and Execution
Data Designer separates configuration (building dataset schemas) from execution (generating the data).
Part 1: Build Configs (Library)
Use data_designer.config to define your dataset. See the library documentation for comprehensive guides on column types, constraints, and processors.
Part 2: Execute (Plugin)
Run the configuration locally with the CLI, submit it to NeMo Services, or call the Data Designer API from the SDK:
SDK execution uses the Data Designer API today:
run versus submit primarily controls where the workload executes. Local run can still use the Files API, Secrets API, and Inference Gateway API from a running NeMo Services cluster when the configuration references the corresponding resources. See Execution Modes for details.
Execution-Specific Considerations
When running through the plugin, supported resources depend on the execution mode:
Prerequisites
These tutorials use an Inference Gateway provider for model calls, so a NeMo Services cluster must be running before you preview or create data — including with local CLI run (see Execution Modes for more about this distinction).
Complete Setup to ensure you have the NeMo Services running locally and an inference provider available.
These tutorials reference the default NVIDIA Build model provider, which is created as default/nvidia-build during setup.
Tutorials
Generate a product review dataset using samplers and LLM-generated text. Learn the fundamentals of building configurations and executing jobs.
beginner data-designerUse external datasets to ground synthetic data generation. Generate realistic patient medical notes from symptom-to-diagnosis data.
intermediate data-designer