A framework to benchmark the performance of synthetic data generators for non-temporal tabular data
Project description
An Open Source Project from the Data to AI Lab, at MIT
Benchmarking framework for Synthetic Data Generators
- Website: https://sdv.dev
- Documentation: https://sdv.dev/SDV
- Repository: https://github.com/sdv-dev/SDGym
- License: MIT
- Development Status: Pre-Alpha
Overview
Synthetic Data Gym (SDGym) is a framework to benchmark the performance of synthetic data generators based on SDV and SDMetrics.
SDGym is a part of the The Synthetic Data Vault project.
What is a Synthetic Data Generator?
A Synthetic Data Generator is a Python function (or method) that takes as input some data, which we call the real data, learns a model from it, and outputs new synthetic data that has the same structure and similar mathematical properties as the real one.
Please refer to the synthesizers documentation for instructions about how to implement your own Synthetic Data Generator and integrate with SDGym. You can also read about how to use the ones already included in SDGym and see how to run them.
Benchmark datasets
SDGym evaluates the performance of Synthetic Data Generators using single table, multi table and timeseries datasets stored as CSV files alongside an SDV Metadata JSON file.
Further details about the list of available datasets and how to add your own datasets to the collection can be found in the datasets documentation.
Install
SDGym can be installed using the following commands:
Using pip:
pip install sdgym
Using conda:
conda install -c sdv-dev -c conda-forge sdgym
For more installation options please visit the SDGym installation Guide
Usage
Benchmarking your own Synthesizer
SDGym evaluates Synthetic Data Generators, which are Python functions (or classes) that take as input some data, which we call the real data, learn a model from it, and output new synthetic data that has the same structure and similar mathematical properties as the real one.
As an example, let use define a synthesizer function that applies the GaussianCopula model from SDV
with gaussian distribution.
import numpy as np
from sdv.tabular import GaussianCopula
def gaussian_copula(real_data, metadata):
gc = GaussianCopula(default_distribution='gaussian')
table_name = metadata.get_tables()[0]
gc.fit(real_data[table_name])
return {table_name: gc.sample()}
| :information_source: You can learn how to create your own synthesizer function here. |
|---|
We can now try to evaluate this function on the asia and alarm datasets:
import sdgym
scores = sdgym.run(synthesizers=gaussian_copula, datasets=['asia', 'alarm'])
:information_source: You can learn about different arguments for sdgym.run function here. |
|---|
The output of the sdgym.run function will be a pd.DataFrame containing the results obtained
by your synthesizer on each dataset.
| synthesizer | dataset | modality | metric | score | metric_time | model_time |
|---|---|---|---|---|---|---|
| gaussian_copula | asia | single-table | BNLogLikelihood | -2.842690 | 2.762427 | 0.752364 |
| gaussian_copula | alarm | single-table | BNLogLikelihood | -20.223178 | 7.009401 | 3.173832 |
Benchmarking the SDGym Synthesizers
If you want to run the SDGym benchmark on the SDGym Synthesizers you can directly pass the
corresponding class, or a list of classes, to the sdgym.run function.
For example, if you want to run the complete benchmark suite to evaluate all the existing synthesizers you can run (:warning: this will take a lot of time to run!):
from sdgym.synthesizers import (
CLBN, CopulaGAN, CTGAN, HMA1, Identity, Independent,
MedGAN, PAR, PrivBN, SDV, TableGAN, TVAE,
Uniform, VEEGAN)
all_synthesizers = [
CLBN,
CTGAN,
CopulaGAN,
HMA1,
Identity,
Independent,
MedGAN,
PAR,
PrivBN,
SDV,
TVAE,
TableGAN,
Uniform,
VEEGAN,
]
scores = sdgym.run(synthesizers=all_synthesizers)
For further details about all the arguments and possibilities that the benchmark function offers
please refer to the benchmark documentation
Additional References
- Datasets used in SDGym are detailed here.
- How to write a synthesizer is detailed here.
- How to use benchmark function is detailed here.
- Detailed leaderboard results for all the releases are available here.
The Synthetic Data Vault
This repository is part of The Synthetic Data Vault Project
- Website: https://sdv.dev
- Documentation: https://sdv.dev/SDV
History
v0.3.0 - 2021-01-27
Major rework of the SDGym functionality to support a collection of new features:
- Add relational and timeseries model benchmarking.
- Use SDMetrics for model scoring.
- Update datasets format to match SDV metadata based storage format.
- Centralize default datasets collection in the
sdv-datasetsS3 bucket. - Add options to download and use datasets from different S3 buckets.
- Rename synthesizers to baselines and adapt to the new metadata format.
- Add model execution and metric computation time logging.
- Add optional synthetic data and error traceback caching.
v0.2.2 - 2020-10-17
This version adds a rework of the benchmark function and a few new synthesizers.
New Features
- New CLI with
run,make-leaderboardandmake-summarycommands - Parallel execution via Dask or Multiprocessing
- Download datasets without executing the benchmark
- Support for python from 3.6 to 3.8
New Synthesizers
sdv.tabular.CTGANsdv.tabular.CopulaGANsdv.tabular.GaussianCopulaOneHotsdv.tabular.GaussianCopulaCategoricalsdv.tabular.GaussianCopulaCategoricalFuzzy
v0.2.1 - 2020-05-12
New updated leaderboard and minor improvements.
New Features
- Add parameters for PrivBNSynthesizer - Issue #37 by @csala
v0.2.0 - 2020-04-10
New Becnhmark API and lots of improved documentation.
New Features
- The benchmark function now returns a complete leaderboard instead of only one score
- Class Synthesizers can be directly passed to the benchmark function
Bug Fixes
- One hot encoding errors in the Independent, VEEGAN and Medgan Synthesizers.
- Proper usage of the
evalmode during sampling. - Fix improperly configured datasets.
v0.1.0 - 2019-08-07
First release to PyPi
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sdgym-0.3.0.dev0.tar.gz.
File metadata
- Download URL: sdgym-0.3.0.dev0.tar.gz
- Upload date:
- Size: 1.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.1.3 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed7b0334474d0db936723e1eee57ce52068bd7973944c03f14e2d6be8b97e322
|
|
| MD5 |
1fee9de436004217b2c9b7a01b3e05f2
|
|
| BLAKE2b-256 |
12f2860aae01e08b4fd4214778f7072426db1e13cd74057e09aa3842447a32be
|
File details
Details for the file sdgym-0.3.0.dev0-py2.py3-none-any.whl.
File metadata
- Download URL: sdgym-0.3.0.dev0-py2.py3-none-any.whl
- Upload date:
- Size: 44.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.1.3 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e8589aa9bbbc5f459fdd28ed4bdd247f5bfecc4043884ab55a609594ec0f0c9
|
|
| MD5 |
c0a70155b8805ae132d897e929603865
|
|
| BLAKE2b-256 |
b41b7912b7cd0744a466b14172a11356ba4e04f5bf9a6a49d06b56be0726c80a
|