๐ฆ Import Data Designerยถ
data_designer.configprovides access to the configuration API.DataDesigneris the main interface for data generation.
import data_designer.config as dd
from data_designer.interface import DataDesigner
โ๏ธ Initialize the Data Designer interfaceยถ
DataDesigneris the main object responsible for managing the data generation process.When initialized without arguments, the default model providers are used.
data_designer = DataDesigner()
๐๏ธ Define model configurationsยถ
Each
ModelConfigdefines a model that can be used during the generation process.The "model alias" is used to reference the model in the Data Designer config (as we will see below).
The "model provider" is the external service that hosts the model (see the model config docs for more details).
By default, we use build.nvidia.com as the model provider.
# This name is set in the model provider configuration.
MODEL_PROVIDER = "nvidia"
# The model ID is from build.nvidia.com.
MODEL_ID = "nvidia/nemotron-3-nano-30b-a3b"
# We choose this alias to be descriptive for our use case.
MODEL_ALIAS = "nemotron-nano-v3"
model_configs = [
dd.ModelConfig(
alias=MODEL_ALIAS,
model=MODEL_ID,
provider=MODEL_PROVIDER,
inference_parameters=dd.ChatCompletionInferenceParams(
temperature=1.0,
top_p=1.0,
max_tokens=2048,
extra_body={"chat_template_kwargs": {"enable_thinking": False}},
),
)
]
๐๏ธ Initialize the Data Designer Config Builderยถ
The Data Designer config defines the dataset schema and generation process.
The config builder provides an intuitive interface for building this configuration.
The list of model configs is provided to the builder at initialization.
config_builder = dd.DataDesignerConfigBuilder(model_configs=model_configs)
๐ฒ Getting started with sampler columnsยถ
Sampler columns offer non-LLM based generation of synthetic data.
They are particularly useful for steering the diversity of the generated data, as we demonstrate below.
You can view available samplers using the config builder's info property:
config_builder.info.display("samplers")
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ NeMo Data Designer Samplers โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโ โ Type โ Parameter โ Data Type โ Required โ Constraints โ โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ โ bernoulli โ p โ number โ โ โ >= 0.0, <= 1.0 โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ bernoulli_mixture โ p โ number โ โ โ >= 0.0, <= 1.0 โ โ โ dist_name โ string โ โ โ โ โ โ dist_params โ dict โ โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ binomial โ n โ integer โ โ โ โ โ โ p โ number โ โ โ >= 0.0, <= 1.0 โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ category โ values โ string[] | integer[] | number[] โ โ โ len > 1 โ โ โ weights โ number[] | null โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ datetime โ start โ string โ โ โ โ โ โ end โ string โ โ โ โ โ โ unit โ string โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ gaussian โ mean โ number โ โ โ โ โ โ stddev โ number โ โ โ โ โ โ decimal_places โ integer | null โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ person โ locale โ string โ โ โ โ โ sex โ string | null โ โ โ โ โ city โ string | string[] | null โ โ โ โ โ age_range โ integer[] โ โ len > 2, len < 2 โ โ โ select_field_values โ object | null โ โ โ โ โ with_synthetic_personas โ boolean โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ person_from_faker โ locale โ string โ โ โ โ โ sex โ string | null โ โ โ โ โ city โ string | string[] | null โ โ โ โ โ age_range โ integer[] โ โ len > 2, len < 2 โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ poisson โ mean โ number โ โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ scipy โ dist_name โ string โ โ โ โ โ โ dist_params โ dict โ โ โ โ โ โ decimal_places โ integer | null โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ subcategory โ category โ string โ โ โ โ โ โ values โ dict โ โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ timedelta โ dt_min โ integer โ โ โ >= 0 โ โ โ dt_max โ integer โ โ โ > 0 โ โ โ reference_column_name โ string โ โ โ โ โ โ unit โ string โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ uniform โ low โ number โ โ โ โ โ โ high โ number โ โ โ โ โ โ decimal_places โ integer | null โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโค โ uuid โ prefix โ string | null โ โ โ โ โ short_form โ boolean โ โ โ โ โ uppercase โ boolean โ โ โ โ โ sampler_type โ string โ โ โ โโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโ
Let's start designing our product review dataset by adding product category and subcategory columns.
config_builder.add_column(
dd.SamplerColumnConfig(
name="product_category",
sampler_type=dd.SamplerType.CATEGORY,
params=dd.CategorySamplerParams(
values=[
"Electronics",
"Clothing",
"Home & Kitchen",
"Books",
"Home Office",
],
),
)
)
config_builder.add_column(
dd.SamplerColumnConfig(
name="product_subcategory",
sampler_type=dd.SamplerType.SUBCATEGORY,
params=dd.SubcategorySamplerParams(
category="product_category",
values={
"Electronics": [
"Smartphones",
"Laptops",
"Headphones",
"Cameras",
"Accessories",
],
"Clothing": [
"Men's Clothing",
"Women's Clothing",
"Winter Coats",
"Activewear",
"Accessories",
],
"Home & Kitchen": [
"Appliances",
"Cookware",
"Furniture",
"Decor",
"Organization",
],
"Books": [
"Fiction",
"Non-Fiction",
"Self-Help",
"Textbooks",
"Classics",
],
"Home Office": [
"Desks",
"Chairs",
"Storage",
"Office Supplies",
"Lighting",
],
},
),
)
)
config_builder.add_column(
dd.SamplerColumnConfig(
name="target_age_range",
sampler_type=dd.SamplerType.CATEGORY,
params=dd.CategorySamplerParams(values=["18-25", "25-35", "35-50", "50-65", "65+"]),
)
)
# Optionally validate that the columns are configured correctly.
data_designer.validate(config_builder)
[12:07:16] [INFO] โ Validation passed
Next, let's add samplers to generate data related to the customer and their review.
config_builder.add_column(
dd.SamplerColumnConfig(
name="customer",
sampler_type=dd.SamplerType.PERSON_FROM_FAKER,
params=dd.PersonFromFakerSamplerParams(age_range=[18, 70], locale="en_US"),
)
)
config_builder.add_column(
dd.SamplerColumnConfig(
name="number_of_stars",
sampler_type=dd.SamplerType.UNIFORM,
params=dd.UniformSamplerParams(low=1, high=5),
convert_to="int", # Convert the sampled float to an integer.
)
)
config_builder.add_column(
dd.SamplerColumnConfig(
name="review_style",
sampler_type=dd.SamplerType.CATEGORY,
params=dd.CategorySamplerParams(
values=["rambling", "brief", "detailed", "structured with bullet points"],
weights=[1, 2, 2, 1],
),
)
)
data_designer.validate(config_builder)
[12:07:16] [INFO] โ Validation passed
๐ฆ LLM-generated columnsยถ
The real power of Data Designer comes from leveraging LLMs to generate text, code, and structured data.
When prompting the LLM, we can use Jinja templating to reference other columns in the dataset.
As we see below, nested json fields can be accessed using dot notation.
config_builder.add_column(
dd.LLMTextColumnConfig(
name="product_name",
prompt=(
"You are a helpful assistant that generates product names. DO NOT add quotes around the product name.\n\n"
"Come up with a creative product name for a product in the '{{ product_category }}' category, focusing "
"on products related to '{{ product_subcategory }}'. The target age range of the ideal customer is "
"{{ target_age_range }} years old. Respond with only the product name, no other text."
),
model_alias=MODEL_ALIAS,
)
)
config_builder.add_column(
dd.LLMTextColumnConfig(
name="customer_review",
prompt=(
"You are a customer named {{ customer.first_name }} from {{ customer.city }}, {{ customer.state }}. "
"You are {{ customer.age }} years old and recently purchased a product called {{ product_name }}. "
"Write a review of this product, which you gave a rating of {{ number_of_stars }} stars. "
"The style of the review should be '{{ review_style }}'. "
"Respond with only the review, no other text."
),
model_alias=MODEL_ALIAS,
)
)
data_designer.validate(config_builder)
[12:07:16] [INFO] โ Validation passed
๐ Iteration is key โย preview the dataset!ยถ
Use the
previewmethod to generate a sample of records quickly.Inspect the results for quality and format issues.
Adjust column configurations, prompts, or parameters as needed.
Re-run the preview until satisfied.
preview = data_designer.preview(config_builder, num_records=2)
[12:07:16] [INFO] ๐ญ Preview generation in progress
[12:07:16] [INFO] โ Validation passed
[12:07:17] [INFO] โ๏ธ Sorting column configs into a Directed Acyclic Graph
[12:07:17] [INFO] ๐ฉบ Running health checks for models...
[12:07:17] [INFO] |-- ๐ Checking 'nvidia/nemotron-3-nano-30b-a3b' in provider named 'nvidia' for model alias 'nemotron-nano-v3'...
[12:07:18] [INFO] |-- โ Passed!
[12:07:18] [INFO] ๐ฒ Preparing samplers to generate 2 records across 6 columns
[12:07:20] [INFO] ๐ llm-text model config for column 'product_name'
[12:07:20] [INFO] |-- model: 'nvidia/nemotron-3-nano-30b-a3b'
[12:07:20] [INFO] |-- model alias: 'nemotron-nano-v3'
[12:07:20] [INFO] |-- model provider: 'nvidia'
[12:07:20] [INFO] |-- inference parameters:
[12:07:20] [INFO] | |-- generation_type=chat-completion
[12:07:20] [INFO] | |-- max_parallel_requests=4
[12:07:20] [INFO] | |-- extra_body={'chat_template_kwargs': {'enable_thinking': False}}
[12:07:20] [INFO] | |-- temperature=1.00
[12:07:20] [INFO] | |-- top_p=1.00
[12:07:20] [INFO] | |-- max_tokens=2048
[12:07:20] [INFO] โก๏ธ Processing llm-text column 'product_name' with 4 concurrent workers
[12:07:20] [INFO] โฑ๏ธ llm-text column 'product_name' will report progress after each record
[12:07:20] [INFO] |-- ๐ฅ llm-text column 'product_name' progress: 1/2 (50%) complete, 1 ok, 0 failed, 3.04 rec/s, eta 0.3s
[12:07:20] [INFO] |-- ๐ llm-text column 'product_name' progress: 2/2 (100%) complete, 2 ok, 0 failed, 5.95 rec/s, eta 0.0s
[12:07:20] [INFO] ๐ llm-text model config for column 'customer_review'
[12:07:20] [INFO] |-- model: 'nvidia/nemotron-3-nano-30b-a3b'
[12:07:20] [INFO] |-- model alias: 'nemotron-nano-v3'
[12:07:20] [INFO] |-- model provider: 'nvidia'
[12:07:20] [INFO] |-- inference parameters:
[12:07:20] [INFO] | |-- generation_type=chat-completion
[12:07:20] [INFO] | |-- max_parallel_requests=4
[12:07:20] [INFO] | |-- extra_body={'chat_template_kwargs': {'enable_thinking': False}}
[12:07:20] [INFO] | |-- temperature=1.00
[12:07:20] [INFO] | |-- top_p=1.00
[12:07:20] [INFO] | |-- max_tokens=2048
[12:07:20] [INFO] โก๏ธ Processing llm-text column 'customer_review' with 4 concurrent workers
[12:07:20] [INFO] โฑ๏ธ llm-text column 'customer_review' will report progress after each record
[12:07:20] [INFO] |-- ๐ธ llm-text column 'customer_review' progress: 1/2 (50%) complete, 1 ok, 0 failed, 2.19 rec/s, eta 0.5s
[12:07:24] [INFO] |-- ๐ฆ llm-text column 'customer_review' progress: 2/2 (100%) complete, 2 ok, 0 failed, 0.44 rec/s, eta 0.0s
[12:07:25] [INFO] ๐ Model usage summary:
[12:07:25] [INFO] |-- model: nvidia/nemotron-3-nano-30b-a3b
[12:07:25] [INFO] |-- tokens: input=353, output=619, total=972, tps=137
[12:07:25] [INFO] |-- requests: success=4, failed=0, total=4, rpm=33
[12:07:25] [INFO] ๐ Measuring dataset column statistics:
[12:07:25] [INFO] |-- ๐ฒ column: 'product_category'
[12:07:25] [INFO] |-- ๐ฒ column: 'product_subcategory'
[12:07:25] [INFO] |-- ๐ฒ column: 'target_age_range'
[12:07:25] [INFO] |-- ๐ฒ column: 'customer'
[12:07:25] [INFO] |-- ๐ฒ column: 'number_of_stars'
[12:07:25] [INFO] |-- ๐ฒ column: 'review_style'
[12:07:25] [INFO] |-- ๐ column: 'product_name'
[12:07:25] [INFO] |-- ๐ column: 'customer_review'
[12:07:25] [INFO] ๐ Preview complete!
# Run this cell multiple times to cycle through the 2 preview records.
preview.display_sample_record()
Generated Columns โโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ Name โ Value โ โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ โ product_category โ Home Office โ โโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ product_subcategory โ Storage โ โโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ target_age_range โ 35-50 โ โโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ customer โ { โ โ โ 'uuid': '6dfd3b6a-9785-4fa2-a80e-2db2bfb7c80e', โ โ โ 'locale': 'en_US', โ โ โ 'first_name': 'Mike', โ โ โ 'last_name': 'Moore', โ โ โ 'middle_name': None, โ โ โ 'sex': 'Male', โ โ โ 'street_number': '74419', โ โ โ 'street_name': 'Ryan Mountain', โ โ โ 'city': 'Staceystad', โ โ โ 'state': 'Indiana', โ โ โ 'postcode': '81580', โ โ โ 'age': 59, โ โ โ 'birth_date': '1966-08-07', โ โ โ 'country': 'Romania', โ โ โ 'marital_status': 'separated', โ โ โ 'education_level': 'some_college', โ โ โ 'unit': '', โ โ โ 'occupation': 'Accountant, chartered certified', โ โ โ 'phone_number': '440-972-4558', โ โ โ 'bachelors_field': 'no_degree' โ โ โ } โ โโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ number_of_stars โ 3 โ โโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ review_style โ brief โ โโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ product_name โ WorkspaceRevive Chest โ โโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ customer_review โ Worked okay for the price but nothing special. Staceystad, IN 59 y/o. โ โโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ [index: 0]
# The preview dataset is available as a pandas DataFrame.
preview.dataset
| product_category | product_subcategory | target_age_range | customer | number_of_stars | review_style | product_name | customer_review | |
|---|---|---|---|---|---|---|---|---|
| 0 | Home Office | Storage | 35-50 | {'uuid': '6dfd3b6a-9785-4fa2-a80e-2db2bfb7c80e... | 3 | brief | WorkspaceRevive Chest | Worked okay for the price but nothing special.... |
| 1 | Electronics | Cameras | 25-35 | {'uuid': '09a605be-3ca3-4c48-809a-be8393baaac5... | 4 | detailed | LumenCapture Pro | Iโm Richard from Lehmanstad, Arizona, and Iโm ... |
๐ Analyze the generated dataยถ
Data Designer automatically generates a basic statistical analysis of the generated data.
This analysis is available via the
analysisproperty of generation result objects.
# Print the analysis as a table.
preview.analysis.to_report()
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐จ Data Designer Dataset Profile โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ Dataset Overview โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ number of records โ number of columns โ percent complete records โ โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ โ 2 โ 8 โ 100.0% โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ฒ Sampler Columns โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ column name โ data type โ number unique values โ sampler type โ โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ โ product_category โ string โ 2 (100.0%) โ category โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ product_subcategory โ string โ 2 (100.0%) โ subcategory โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ target_age_range โ string โ 2 (100.0%) โ category โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ customer โ dict โ 2 (100.0%) โ person_from_faker โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ number_of_stars โ int โ 2 (100.0%) โ uniform โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ review_style โ string โ 2 (100.0%) โ category โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ LLM-Text Columns โโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโ โ โ โ โ prompt tokens โ completion tokens โ โ column name โ data type โ number unique values โ per record โ per record โ โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ โ product_name โ string โ 2 (100.0%) โ 73.5 +/- 0.5 โ 4.0 +/- 0.0 โ โโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโค โ customer_review โ string โ 2 (100.0%) โ 68.5 +/- 0.5 โ 290.5 +/- 381.1 โ โโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโ โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ Table Notes โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ โ โ โ 1. All token statistics are based on a sample of max(1000, len(dataset)) records. โ โ 2. Tokens are calculated using tiktoken's cl100k_base tokenizer. โ โ โ โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Scale up!ยถ
Happy with your preview data?
Use the
createmethod to submit larger Data Designer generation jobs.
results = data_designer.create(config_builder, num_records=10, dataset_name="tutorial-1")
[12:07:25] [INFO] ๐จ Creating Data Designer dataset
[12:07:25] [INFO] โ Validation passed
[12:07:25] [INFO] โ๏ธ Sorting column configs into a Directed Acyclic Graph
[12:07:25] [INFO] ๐ฉบ Running health checks for models...
[12:07:25] [INFO] |-- ๐ Checking 'nvidia/nemotron-3-nano-30b-a3b' in provider named 'nvidia' for model alias 'nemotron-nano-v3'...
[12:07:26] [INFO] |-- โ Passed!
[12:07:26] [INFO] โณ Processing batch 1 of 1
[12:07:26] [INFO] ๐ฒ Preparing samplers to generate 10 records across 6 columns
[12:07:26] [INFO] ๐ llm-text model config for column 'product_name'
[12:07:26] [INFO] |-- model: 'nvidia/nemotron-3-nano-30b-a3b'
[12:07:26] [INFO] |-- model alias: 'nemotron-nano-v3'
[12:07:26] [INFO] |-- model provider: 'nvidia'
[12:07:26] [INFO] |-- inference parameters:
[12:07:26] [INFO] | |-- generation_type=chat-completion
[12:07:26] [INFO] | |-- max_parallel_requests=4
[12:07:26] [INFO] | |-- extra_body={'chat_template_kwargs': {'enable_thinking': False}}
[12:07:26] [INFO] | |-- temperature=1.00
[12:07:26] [INFO] | |-- top_p=1.00
[12:07:26] [INFO] | |-- max_tokens=2048
[12:07:26] [INFO] โก๏ธ Processing llm-text column 'product_name' with 4 concurrent workers
[12:07:26] [INFO] โฑ๏ธ llm-text column 'product_name' will report progress after each record
[12:07:26] [INFO] |-- ๐ด llm-text column 'product_name' progress: 1/10 (10%) complete, 1 ok, 0 failed, 3.09 rec/s, eta 2.9s
[12:07:26] [INFO] |-- ๐ด llm-text column 'product_name' progress: 2/10 (20%) complete, 2 ok, 0 failed, 6.14 rec/s, eta 1.3s
[12:07:26] [INFO] |-- ๐ฅฑ llm-text column 'product_name' progress: 3/10 (30%) complete, 3 ok, 0 failed, 8.71 rec/s, eta 0.8s
[12:07:26] [INFO] |-- ๐ฅฑ llm-text column 'product_name' progress: 4/10 (40%) complete, 4 ok, 0 failed, 8.96 rec/s, eta 0.7s
[12:07:26] [INFO] |-- ๐ llm-text column 'product_name' progress: 5/10 (50%) complete, 5 ok, 0 failed, 7.81 rec/s, eta 0.6s
[12:07:26] [INFO] |-- ๐ llm-text column 'product_name' progress: 6/10 (60%) complete, 6 ok, 0 failed, 9.16 rec/s, eta 0.4s
[12:07:26] [INFO] |-- ๐ llm-text column 'product_name' progress: 7/10 (70%) complete, 7 ok, 0 failed, 9.41 rec/s, eta 0.3s
[12:07:26] [INFO] |-- ๐ llm-text column 'product_name' progress: 8/10 (80%) complete, 8 ok, 0 failed, 9.68 rec/s, eta 0.2s
[12:07:27] [INFO] |-- ๐ llm-text column 'product_name' progress: 9/10 (90%) complete, 9 ok, 0 failed, 8.95 rec/s, eta 0.1s
[12:07:27] [INFO] |-- ๐คฉ llm-text column 'product_name' progress: 10/10 (100%) complete, 10 ok, 0 failed, 9.93 rec/s, eta 0.0s
[12:07:27] [INFO] ๐ llm-text model config for column 'customer_review'
[12:07:27] [INFO] |-- model: 'nvidia/nemotron-3-nano-30b-a3b'
[12:07:27] [INFO] |-- model alias: 'nemotron-nano-v3'
[12:07:27] [INFO] |-- model provider: 'nvidia'
[12:07:27] [INFO] |-- inference parameters:
[12:07:27] [INFO] | |-- generation_type=chat-completion
[12:07:27] [INFO] | |-- max_parallel_requests=4
[12:07:27] [INFO] | |-- extra_body={'chat_template_kwargs': {'enable_thinking': False}}
[12:07:27] [INFO] | |-- temperature=1.00
[12:07:27] [INFO] | |-- top_p=1.00
[12:07:27] [INFO] | |-- max_tokens=2048
[12:07:27] [INFO] โก๏ธ Processing llm-text column 'customer_review' with 4 concurrent workers
[12:07:27] [INFO] โฑ๏ธ llm-text column 'customer_review' will report progress after each record
[12:07:31] [INFO] |-- ๐ฅ llm-text column 'customer_review' progress: 1/10 (10%) complete, 1 ok, 0 failed, 0.25 rec/s, eta 36.2s
[12:07:31] [INFO] |-- ๐ฅ llm-text column 'customer_review' progress: 2/10 (20%) complete, 2 ok, 0 failed, 0.45 rec/s, eta 17.9s
[12:07:31] [INFO] |-- ๐ฃ llm-text column 'customer_review' progress: 3/10 (30%) complete, 3 ok, 0 failed, 0.64 rec/s, eta 11.0s
[12:07:32] [INFO] |-- ๐ฃ llm-text column 'customer_review' progress: 4/10 (40%) complete, 4 ok, 0 failed, 0.79 rec/s, eta 7.6s
[12:07:32] [INFO] |-- ๐ฅ llm-text column 'customer_review' progress: 5/10 (50%) complete, 5 ok, 0 failed, 0.97 rec/s, eta 5.1s
[12:07:32] [INFO] |-- ๐ฅ llm-text column 'customer_review' progress: 6/10 (60%) complete, 6 ok, 0 failed, 1.09 rec/s, eta 3.7s
[12:07:33] [INFO] |-- ๐ฅ llm-text column 'customer_review' progress: 7/10 (70%) complete, 7 ok, 0 failed, 1.03 rec/s, eta 2.9s
[12:07:35] [INFO] |-- ๐ค llm-text column 'customer_review' progress: 8/10 (80%) complete, 8 ok, 0 failed, 0.95 rec/s, eta 2.1s
[12:07:36] [INFO] |-- ๐ค llm-text column 'customer_review' progress: 9/10 (90%) complete, 9 ok, 0 failed, 1.02 rec/s, eta 1.0s
[12:07:39] [INFO] |-- ๐ llm-text column 'customer_review' progress: 10/10 (100%) complete, 10 ok, 0 failed, 0.83 rec/s, eta 0.0s
[12:07:39] [INFO] ๐ Model usage summary:
[12:07:39] [INFO] |-- model: nvidia/nemotron-3-nano-30b-a3b
[12:07:39] [INFO] |-- tokens: input=1779, output=4140, total=5919, tps=441
[12:07:39] [INFO] |-- requests: success=20, failed=0, total=20, rpm=89
[12:07:39] [INFO] ๐ Measuring dataset column statistics:
[12:07:39] [INFO] |-- ๐ฒ column: 'product_category'
[12:07:39] [INFO] |-- ๐ฒ column: 'product_subcategory'
[12:07:39] [INFO] |-- ๐ฒ column: 'target_age_range'
[12:07:39] [INFO] |-- ๐ฒ column: 'customer'
[12:07:39] [INFO] |-- ๐ฒ column: 'number_of_stars'
[12:07:39] [INFO] |-- ๐ฒ column: 'review_style'
[12:07:39] [INFO] |-- ๐ column: 'product_name'
[12:07:39] [INFO] |-- ๐ column: 'customer_review'
# Load the generated dataset as a pandas DataFrame.
dataset = results.load_dataset()
dataset.head()
| product_category | product_subcategory | target_age_range | customer | number_of_stars | review_style | product_name | customer_review | |
|---|---|---|---|---|---|---|---|---|
| 0 | Books | Textbooks | 25-35 | {'age': 20, 'bachelors_field': 'no_degree', 'b... | 2 | detailed | Elevate Study Mastery | Iโm Lisa, a 20โyearโold student living in Sout... |
| 1 | Home & Kitchen | Decor | 35-50 | {'age': 18, 'bachelors_field': 'no_degree', 'b... | 1 | rambling | Elevate Your Home Decor with the Majestic Eleg... | I got the Majestic Elegance Canvas on a whim f... |
| 2 | Electronics | Headphones | 35-50 | {'age': 58, 'bachelors_field': 'no_degree', 'b... | 3 | structured with bullet points | Aurora AcousticLux | - **Overall Rating:** โ โ โ โโ (3 out of 5) - *... |
| 3 | Home & Kitchen | Decor | 50-65 | {'age': 59, 'bachelors_field': 'education', 'b... | 3 | rambling | Elegant Memory Lane Mirror | I was reckoninโ this Elegant Memory Lane Mirro... |
| 4 | Electronics | Accessories | 25-35 | {'age': 52, 'bachelors_field': 'stem', 'birth_... | 2 | detailed | VoltSync Hub | **VoltSync Hub โ 2 Stars** Iโm Jessica, 52,... |
# Load the analysis results into memory.
analysis = results.load_analysis()
analysis.to_report()
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐จ Data Designer Dataset Profile โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ Dataset Overview โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ number of records โ number of columns โ percent complete records โ โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ โ 10 โ 8 โ 100.0% โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ฒ Sampler Columns โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ column name โ data type โ number unique values โ sampler type โ โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ โ product_category โ string โ 5 (50.0%) โ category โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ product_subcategory โ string โ 9 (90.0%) โ subcategory โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ target_age_range โ string โ 5 (50.0%) โ category โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ customer โ dict โ 10 (100.0%) โ person_from_faker โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ number_of_stars โ int โ 3 (30.0%) โ uniform โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค โ review_style โ string โ 4 (40.0%) โ category โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ ๐ LLM-Text Columns โโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโ โ โ โ โ prompt tokens โ completion tokens โ โ column name โ data type โ number unique values โ per record โ per record โ โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ โ product_name โ string โ 10 (100.0%) โ 74.0 +/- 0.4 โ 5.5 +/- 3.3 โ โโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโค โ customer_review โ string โ 10 (100.0%) โ 69.5 +/- 3.1 โ 406.5 +/- 291.8 โ โโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโ โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ Table Notes โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ โ โ โ 1. All token statistics are based on a sample of max(1000, len(dataset)) records. โ โ 2. Tokens are calculated using tiktoken's cl100k_base tokenizer. โ โ โ โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โญ๏ธ Next Stepsยถ
Now that you've seen the basics of Data Designer, check out the following notebooks to learn more about: