Skip to content

Tutorials

These tutorials demonstrate how to build Data Designer configurations and execute them through the NeMo Data Designer plugin.

Note

The code snippets on this page are for conceptual demonstration purposes only. For runnable examples, jump ahead to the Basics or Seeding tutorial.

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.

import data_designer.config as dd

config_builder = dd.DataDesignerConfigBuilder(model_configs)
config_builder.add_column(dd.SamplerColumnConfig(...))
config_builder.add_column(dd.LLMTextColumnConfig(...))

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:

nemo data-designer preview run product_reviews.py --num-records 5
nemo data-designer create submit product_reviews.py --workspace default --num-records 30

SDK execution uses the Data Designer API today:

import os
from nemo_platform import NeMoPlatform

client = NeMoPlatform(
    base_url=os.environ.get("NMP_BASE_URL", "http://localhost:8080"),
    workspace="default",
)
data_designer = client.data_designer
preview = data_designer.preview(config_builder)
job = data_designer.create(config_builder, num_records=1000)

Tip

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:

Feature CLI run CLI submit / SDK
Inference Local providers and/or Inference Gateway providers Inference Gateway providers
Seed data Local sources, HuggingFace, or Files API Filesets HuggingFace or Files API Filesets
Secrets Environment, plaintext, or Secrets API secrets Secrets API secrets
Artifacts Local execution artifacts Job artifact storage

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

  • The Basics


    Generate a product review dataset using samplers and LLM-generated text. Learn the fundamentals of building configurations and executing jobs.

    beginner data-designer

  • Seeding


    Use external datasets to ground synthetic data generation. Generate realistic patient medical notes from symptom-to-diagnosis data.

    intermediate data-designer