Sampling
After you are finished with modeling, your can use your synthesizer to generate and save synthetic data.
from sdv.utils import load_synthesizer
synthesizer = load_synthesizer(
filepath='my_synthesizer.pkl'
)
synthetic_data = synthesizer.sample(scale=2.5)
What are your sampling needs?
The multi-table synthesizers can support multiple sampling needs.
Last updated