Overview
In order to use SDV, you'll need to start with two inputs loaded into Python:
Data, which is the training data for SDV. SDV learns statistical patterns from your training data and aim to replicate them when it creates synthetic data. SDV supports single-table, multi-table, and sequential data. For more details, see the Data Modalities doc.
Metadata, which is a description of the dataset you want to synthesize. Metadata includes the names of tables, columns, data types in each of the columns, and relationships between tables. Metadata is represented as a Python dictionary.
Once you have your data and metadata, you'll be able to use SDV's synthesizers to create synthetic data.
Start Your Integration
For the best experience, we recommend connecting your database to import data and metadata. Alternatively if you already have data locally (eg. in CSV files), you can load it into Python.
❖ Connect Your Database
To start your data integration, we recommend Connecting Your Database to SDV.
For more information see the Connect Your Database docs.
Import Local Data
Alternatively, you can load in data from local files such as CSVs.
For more information, see the Import Local Data docs.
FAQ
Last updated