Conditional Sampling
Do you have exact values that you'd like to include in the synthetic data? Using conditional sampling to provide this information. Conditional sampling can allow you to:
Generate hypothetical scenarios, by fixing the values to correspond to extreme cases
De-bias your data, by requesting an equal balance of labels
Impute unknown data, by requesting the data that you already know
Providing Fixed Conditions
Use conditions to provide exact, fixed values that you'd like. The SDV factors in your conditions and updates the rest of the data based on them.
Define Your Conditions
Create a Condition
object to specify an exact values that you want to include in the synthetic data, one or more columns.
Parameters
(required)
num_rows
: The number of rows that need to be included in the scenario(required)
column_values
: A dictionary with the scenario. The keys should be a column names and the values should be the exact data that the column should have.
sample_from_conditions
Use this function to create synthetic data based on the conditions.
Parameters
(required)
conditions
: A list of Condition objects that specify the exact values that you want to fix and the number of rows to synthesize.batch_size
: An integer >0, describing the number of rows to sample at a time. If you are sampling a large number of rows, setting a smaller batch size allows you to see and save incremental progress. Defaults to the same asnum_rows
.max_tries_per_batch
: An integer >0, describing the number of sampling attempts to make per batch. If you have included constraints, it may take multiple batches to create valid data. Defaults to100
.output_file_path
: A string describing a CSV filepath for writing the synthetic data. Specify toNone
to skip writing to a file. Defaults toNone
.
The quality of your synthetic data is preserved. When you provide conditions, the SDV synthesizers will match your conditions and create the remaining data based on the patterns that it learned. Your synthetic data will continue to have the same statistical patterns between columns.
Condition on Known Columns
Do you already know all the information in particular columns? The SDV can factor in these columns and generate the remaining columns based on them.
sample_remaining_columns
Use this function to sample remaining columns based on known, reference columns.
Parameters
batch_size
: An integer >0, describing the number of rows to sample at a time. If you are sampling a large number of rows, setting a smaller batch size allows you to see and save incremental progress. Defaults to the same asnum_rows
.max_tries_per_batch
: An integer >0, describing the number of sampling attempts to make per batch. If you have included constraints, it may take multiple batches to create valid data. Defaults to100
.output_file_path
: A string describing a CSV filepath for writing the synthetic data. Specify toNone
to skip writing to a file. Defaults toNone
.
The quality of your synthetic data is preserved. When you provide known columns, the SDV synthesizers will match the columns and create the remaining columns based on the patterns that it learned. Your synthetic data will continue to have the same statistical patterns between columns.
Troubleshooting
Conditional sampling is a complex feature. In some cases, your synthesizer may not be able to create all rows of synthetic data that you request. Let's walk through some areas that you can investigate.
Which synthesizer are you using?
The SDV synthesizers have different conditional sampling capabilities. If you are using the CTGAN, TVAE or CopulaGAN synthesizers, the SDV may unable to complete your conditional sampling request in some instances.
Neural network-based synthesizers use a reject sampling approach: They sample synthetic data freely, keep the rows that match your conditions and repeat the process as needed. This may not be efficient if the conditional values are extremely rare.
Some suggestions:
Use a larger
batch_size
ormax_tries_per_batch
. The more rare your conditions, the more attempts the SDV will have to make.
Are you including constraints?
Suggestions:
Use a larger
batch_size
ormax_tries_per_batch
. The more constraints you have, the more attempts the SDV will have to make.Consider removing constraints and refitting your synthesizer. This will help if you are conditioning on desired columns that were involved in a constraint.
Are you requesting data that is out of range?
The SDV synthesizers are designed to learn patterns from the input data that you've added during fit
, including the the min and max ranges of each column. If you are requesting conditional values that are outside of the ranges, the synthesizer may not be able to accommodate your request.
Need more help?
Last updated