Upload Files as Seeds
Upload a Dataset
You can use an existing dataset (CSV, DataFrame, etc.) in Data Designer to add diversity to your LLM generated columns:
Sampling Strategies
When using a seed dataset, you can control how it's used with these parameters:
sampling_strategy:
"ordered"
: Maintains the original order of records (default)"shuffle"
: Randomly shuffles the records
with_replacement:
False
: Each seed record is used only once (default)True
: Records can be reused, necessary when generating more records than in your seed
Referencing Columns
Once you've added a seed dataset, its columns become available to reference in your Data Designer:
Last updated
Was this helpful?