data_designer.config.sampler_params
data_designer.config.sampler_params
data_designer.config.sampler_params
Bases: str, enum.Enum
Bases: data_designer.config.base.ConfigBase
Parameters for categorical sampling with optional probability weighting.
Samples values from a discrete set of categories. When weights are provided, values are sampled according to their assigned probabilities. Without weights, uniform sampling is used.
Parameters:
List of possible categorical values to sample from. Can contain strings, integers, or floats. Must contain at least one value.
Optional unnormalized probability weights for each value. If provided, must be
the same length as values. Weights are automatically normalized to sum to 1.0.
Larger weights result in higher sampling probability for the corresponding value.
Attributes:
List of possible categorical values to sample from. Can contain strings, integers, or floats. Must contain at least one value.
Optional unnormalized probability weights for each value. If provided, must be
the same length as values. Weights are automatically normalized to sum to 1.0.
Larger weights result in higher sampling probability for the corresponding value.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for uniform datetime sampling within a specified range.
Samples datetime values uniformly between a start and end date with a specified granularity. The sampling unit determines the smallest possible time interval between consecutive samples.
Parameters:
Earliest possible datetime for the sampling range (inclusive). Must be a valid datetime string parseable by pandas.to_datetime().
Exclusive upper bound for the sampling range. Must be a valid datetime string parseable by pandas.to_datetime().
Time unit for sampling granularity. Options:
Attributes:
Earliest possible datetime for the sampling range (inclusive). Must be a valid datetime string parseable by pandas.to_datetime().
Exclusive upper bound for the sampling range. Must be a valid datetime string parseable by pandas.to_datetime().
Time unit for sampling granularity. Options:
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for subcategory sampling conditioned on a parent category column.
Samples subcategory values based on the value of a parent category column. Each parent category value maps to its own list of possible subcategory values, enabling hierarchical or conditional sampling patterns.
Parameters:
Name of the parent category column that this subcategory depends on. The parent column must be generated before this subcategory column.
Mapping from each parent category value to a list of possible subcategory values. Each key must correspond to a value that appears in the parent category column.
Attributes:
Name of the parent category column that this subcategory depends on. The parent column must be generated before this subcategory column.
Mapping from each parent category value to a list of possible subcategory values. Each key must correspond to a value that appears in the parent category column.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling time deltas relative to a reference datetime column.
Samples time offsets within a specified range and adds them to values from a reference datetime column. This is useful for generating related datetime columns like order dates and delivery dates, or event start times and end times.
Years and months are not supported as timedelta units because they have variable lengths. See: pandas timedelta documentation
Parameters:
Minimum time-delta value (inclusive). Must be non-negative and less than dt_max.
Specified in units defined by the unit parameter.
Maximum time-delta value (exclusive). Must be positive and greater than dt_min.
Specified in units defined by the unit parameter.
Name of an existing datetime column to add the time-delta to. This column must be generated before the timedelta column.
Time unit for the delta values. Options:
Attributes:
Minimum time-delta value (inclusive). Must be non-negative and less than dt_max.
Specified in units defined by the unit parameter.
Maximum time-delta value (exclusive). Must be positive and greater than dt_min.
Specified in units defined by the unit parameter.
Name of an existing datetime column to add the time-delta to. This column must be generated before the timedelta column.
Time unit for the delta values. Options:
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for generating UUID (Universally Unique Identifier) values.
Generates UUID4 (random) identifiers with optional formatting options. UUIDs are useful for creating unique identifiers for records, entities, or transactions.
Parameters:
Optional string to prepend to each UUID. Useful for creating namespaced or typed identifiers (e.g., “user-”, “order-”, “txn-”).
If True, truncates UUIDs to 8 characters (first segment only). Default is False for full 32-character UUIDs (excluding hyphens).
If True, converts all hexadecimal letters to uppercase. Default is False for lowercase UUIDs.
Attributes:
Optional string to prepend to each UUID. Useful for creating namespaced or typed identifiers (e.g., “user-”, “order-”, “txn-”).
If True, truncates UUIDs to 8 characters (first segment only). Default is False for full 32-character UUIDs (excluding hyphens).
If True, converts all hexadecimal letters to uppercase. Default is False for lowercase UUIDs.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling from any scipy.stats continuous or discrete distribution.
Provides a flexible interface to sample from the wide range of probability distributions available in scipy.stats. This enables advanced statistical sampling beyond the built-in distribution types (Gaussian, Uniform, etc.).
See: scipy.stats documentation
Parameters:
Name of the scipy.stats distribution to sample from (e.g., “beta”, “gamma”, “lognorm”, “expon”). Must be a valid distribution name from scipy.stats.
Dictionary of parameters for the specified distribution. Parameter names and values must match the scipy.stats distribution specification (e.g., {“a”: 2, “b”: 5} for beta distribution, {“scale”: 1.5} for exponential).
Optional number of decimal places to round sampled values to. If None, values are not rounded.
Attributes:
Name of the scipy.stats distribution to sample from (e.g., “beta”, “gamma”, “lognorm”, “expon”). Must be a valid distribution name from scipy.stats.
Dictionary of parameters for the specified distribution. Parameter names and values must match the scipy.stats distribution specification (e.g., {“a”: 2, “b”: 5} for beta distribution, {“scale”: 1.5} for exponential).
Optional number of decimal places to round sampled values to. If None, values are not rounded.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling from a Binomial distribution.
Samples integer values representing the number of successes in a fixed number of independent Bernoulli trials, each with the same probability of success. Commonly used to model the number of successful outcomes in repeated experiments.
Parameters:
Number of independent trials. Must be a positive integer.
Probability of success on each trial. Must be between 0.0 and 1.0 (inclusive).
Attributes:
Number of independent trials. Must be a positive integer.
Probability of success on each trial. Must be between 0.0 and 1.0 (inclusive).
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling from a Bernoulli distribution.
Samples binary values (0 or 1) representing the outcome of a single trial with a fixed probability of success. This is the simplest discrete probability distribution, useful for modeling binary outcomes like success/failure, yes/no, or true/false.
Parameters:
Probability of success (sampling 1). Must be between 0.0 and 1.0 (inclusive). The probability of failure (sampling 0) is automatically 1 - p.
Attributes:
Probability of success (sampling 1). Must be between 0.0 and 1.0 (inclusive). The probability of failure (sampling 0) is automatically 1 - p.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling from a Bernoulli mixture distribution.
Combines a Bernoulli distribution with another continuous distribution, creating a mixture where values are either 0 (with probability 1-p) or sampled from the specified distribution (with probability p). This is useful for modeling scenarios with many zero values mixed with a continuous distribution of non-zero values.
Common use cases include modeling sparse events, zero-inflated data, or situations where an outcome either doesn’t occur (0) or follows a specific distribution when it does occur.
Parameters:
Probability of sampling from the mixture distribution (non-zero outcome). Must be between 0.0 and 1.0 (inclusive). With probability 1-p, the sample is 0.
Name of the scipy.stats distribution to sample from when outcome is non-zero. Must be a valid scipy.stats distribution name (e.g., “norm”, “gamma”, “expon”).
Parameters for the specified scipy.stats distribution.
Attributes:
Probability of sampling from the mixture distribution (non-zero outcome). Must be between 0.0 and 1.0 (inclusive). With probability 1-p, the sample is 0.
Name of the scipy.stats distribution to sample from when outcome is non-zero. Must be a valid scipy.stats distribution name (e.g., “norm”, “gamma”, “expon”).
Parameters for the specified scipy.stats distribution.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling from a Gaussian (Normal) distribution.
Samples continuous values from a normal distribution characterized by its mean and standard deviation. The Gaussian distribution is one of the most commonly used probability distributions, appearing naturally in many real-world phenomena due to the Central Limit Theorem.
Parameters:
Mean (center) of the Gaussian distribution. This is the expected value and the location of the distribution’s peak.
Standard deviation of the Gaussian distribution. Controls the spread or width of the distribution. Must be positive.
Optional number of decimal places to round sampled values to. If None, values are not rounded.
Attributes:
Mean (center) of the Gaussian distribution. This is the expected value and the location of the distribution’s peak.
Standard deviation of the Gaussian distribution. Controls the spread or width of the distribution. Must be positive.
Optional number of decimal places to round sampled values to. If None, values are not rounded.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling from a Poisson distribution.
Samples non-negative integer values representing the number of events occurring in a fixed interval of time or space. The Poisson distribution is commonly used to model count data like the number of arrivals, occurrences, or events per time period.
The distribution is characterized by a single parameter (mean/rate), and both the mean and variance equal this parameter value.
Parameters:
Mean number of events in the fixed interval (also called rate parameter λ). Must be positive. This represents both the expected value and the variance of the distribution.
Attributes:
Mean number of events in the fixed interval (also called rate parameter λ). Must be positive. This represents both the expected value and the variance of the distribution.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling from a continuous Uniform distribution.
Samples continuous values uniformly from a specified range, where every value in the range has equal probability of being sampled. This is useful when all values within a range are equally likely, such as random percentages, proportions, or unbiased measurements.
Parameters:
Lower bound of the uniform distribution (inclusive). Can be any real number.
Upper bound of the uniform distribution. Must be greater than low.
Optional number of decimal places to round sampled values to. If None, values are not rounded and may have many decimal places.
Attributes:
Lower bound of the uniform distribution (inclusive). Can be any real number.
Upper bound of the uniform distribution. Must be greater than low.
Optional number of decimal places to round sampled values to. If None, values are not rounded and may have many decimal places.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling synthetic person data with demographic attributes.
Generates realistic synthetic person data including names, addresses, phone numbers, and other demographic information from managed datasets. The sampler supports filtering by locale, sex, age, geographic location, and selected managed-dataset fields, and can optionally include synthetic persona descriptions. For Faker-generated person data, use PersonFromFakerSamplerParams.
Parameters:
Locale string determining the language and geographic region for synthetic people. Must be a locale supported by a managed Nemotron Personas dataset. The dataset must be downloaded and available in the managed assets directory.
If specified, filters to only sample people of the specified sex. Options: “Male” or “Female”. If None, samples both sexes.
If specified, filters to only sample people from the specified city or cities. Can be a single city name (string) or a list of city names.
Two-element list [min_age, max_age] specifying the age range to sample from (inclusive). Defaults to a standard age range. Both values must be between minimum and maximum allowed ages.
If True, appends additional synthetic persona columns including personality traits, interests, and background descriptions. Only supported for certain locales with managed datasets.
Optional field-value filters for managed datasets. Supported field names are checked against the managed person data fields.
Attributes:
Locale string determining the language and geographic region for synthetic people. Must be a locale supported by a managed Nemotron Personas dataset. The dataset must be downloaded and available in the managed assets directory.
If specified, filters to only sample people of the specified sex. Options: “Male” or “Female”. If None, samples both sexes.
If specified, filters to only sample people from the specified city or cities. Can be a single city name (string) or a list of city names.
Two-element list [min_age, max_age] specifying the age range to sample from (inclusive). Defaults to a standard age range. Both values must be between minimum and maximum allowed ages.
If True, appends additional synthetic persona columns including personality traits, interests, and background descriptions. Only supported for certain locales with managed datasets.
Optional field-value filters for managed datasets. Supported field names are checked against the managed person data fields.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Keyword arguments to pass to the person generator.
Bases: data_designer.config.base.ConfigBase
Parameters for sampling synthetic person data with demographic attributes from Faker.
Uses the Faker library to generate random personal information. The data is basic and not demographically
accurate, but is useful for quick testing, prototyping, or when realistic demographic distributions are not
relevant for your use case. For demographically accurate person data, use the PersonSamplerParams sampler.
Parameters:
Locale string determining the language and geographic region for synthetic people. Can be any locale supported by Faker.
If specified, filters to only sample people of the specified sex. Options: “Male” or “Female”. If None, samples both sexes.
If specified, filters to only sample people from the specified city or cities. Can be a single city name (string) or a list of city names.
Two-element list [min_age, max_age] specifying the age range to sample from (inclusive). Defaults to a standard age range. Both values must be between the minimum and maximum allowed ages.
Discriminator for the sampler type. Must be SamplerType.PERSON_FROM_FAKER.
Attributes:
Locale string determining the language and geographic region for synthetic people. Can be any locale supported by Faker.
If specified, filters to only sample people of the specified sex. Options: “Male” or “Female”. If None, samples both sexes.
If specified, filters to only sample people from the specified city or cities. Can be a single city name (string) or a list of city names.
Two-element list [min_age, max_age] specifying the age range to sample from (inclusive). Defaults to a standard age range. Both values must be between the minimum and maximum allowed ages.
Discriminator for the sampler type. Must be SamplerType.PERSON_FROM_FAKER.
Initialization:
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be
validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Keyword arguments to pass to the person generator.