For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Welcome
    • Contributing
  • Concepts
    • Columns
    • Seed Datasets
    • Agent Rollout Ingestion
    • Custom Columns
    • Validators
    • Processors
    • Person Sampling
    • Traces
    • Architecture & Performance
    • Deployment Options
    • Security
  • Tutorials
    • Overview
    • The Basics
    • Structured Outputs, Jinja Expressions, and Conditional Generation
    • Seeding with an External Dataset
    • Providing Images as Context
    • Generating Images
    • Image-to-Image Editing
  • Recipes
    • Recipe Cards
  • Plugins
    • Overview
    • Example Plugin
    • FileSystemSeedReader Plugins
    • Discover
  • Code Reference
    • Overview
      • Overview
      • models
      • mcp
      • column_configs
      • config_builder
      • data_designer_config
      • run_config
      • sampler_params
      • validator_params
      • seeds
      • processors
      • analysis
      • Config API
        • Analysis
        • Base
        • Column Configs
        • Column Types
        • Config Builder
        • Custom Column
        • Data Designer Config
        • Dataset Metadata
        • Default Model Settings
        • Errors
        • Exportable Config
        • Fingerprint
        • Interface
        • Mcp
        • Models
        • Preview Results
        • Processor Types
        • Processors
        • Run Config
        • Sampler Constraints
        • Sampler Params
        • Seed
        • Seed Source
        • Seed Source Dataframe
        • Seed Source Types
        • Testing
        • Utils
        • Validator Params
        • Version
  • Dev Notes
    • Overview
    • Have It Your Way
    • VLM Long Document Understanding
    • Push Datasets to Hugging Face Hub
    • Text-to-SQL for Nemotron Super
    • Async All the Way Down
    • Owning the Model Stack
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogoNeMo Data Designer
On this page
  • Module Contents
  • Classes
  • API
Code ReferenceConfigConfig API

data_designer.config.exportable_config

||View as Markdown|
Previous

Errors

Next

Fingerprint

Module Contents

Classes

NameDescription
ExportableConfigBase!!! abstract “Usage Documentation” Models

API

1class data_designer.config.exportable_config.ExportableConfigBase(
2 /,
3 **data: typing.Any
4)

Bases: data_designer.config.base.ConfigBase

1to_dict() -> dict[str, typing.Any]

Convert the configuration to a dictionary.

Returns:

dict[str, typing.Any]

A dictionary representation of the configuration using JSON-compatible serialization.

1to_yaml(
2 path: str | pathlib.Path | None = None,
3 *,
4 indent: int | None = 2,
5 **kwargs
6) -> str | None

Convert the configuration to a YAML string or file.

Parameters:

path
str | pathlib.Path | NoneDefaults to None

Optional file path to write the YAML to. If None, returns the YAML string instead of writing to file.

indent
int | NoneDefaults to 2

Number of spaces for YAML indentation. Defaults to 2.

**kwargs

Additional keyword arguments passed to yaml.dump().

Returns:

str | None

The YAML string if path is None, otherwise None (file is written).

1to_json(
2 path: str | pathlib.Path | None = None,
3 *,
4 indent: int | None = 2,
5 **kwargs
6) -> str | None

Convert the configuration to a JSON string or file.

Parameters:

path
str | pathlib.Path | NoneDefaults to None

Optional file path to write the JSON to. If None, returns the JSON string instead of writing to file.

indent
int | NoneDefaults to 2

Number of spaces for JSON indentation. Defaults to 2.

**kwargs

Additional keyword arguments passed to json.dumps().

Returns:

str | None

The JSON string if path is None, otherwise None (file is written).