Skip to content

Releases: sdv-dev/SDV

v0.3.6 - 2020-07-23

23 Jul 21:33
Compare
Choose a tag to compare

This release introduces a new concept of Constraints, which allow the user to define
special relationships between columns that will not be handled via modeling.

This is done via a new sdv.constraints subpackage which defines some well-known pre-defined
constraints, as well as a generic framework that allows the user to customize the constraints
to their needs as much as necessary.

New Features

v0.3.5 - 2020-07-09

09 Jul 20:45
Compare
Choose a tag to compare

This release introduces a new subpackage sdv.tabular with models designed specifically
for single table modeling, while still providing all the usual conveniences from SDV, such
as:

  • Seamless multi-type support
  • Missing data handling
  • PII anonymization

Currently implemented models are:

  • GaussianCopula: Multivariate distributions modeled using copula functions. This is stronger
    version, with more marginal distributions and options, than the one used to model multi-table
    datasets.
  • CTGAN: GAN-based data synthesizer that can generate synthetic tabular data with high fidelity.

v0.3.4 - 2020-07-04

04 Jul 12:56
Compare
Choose a tag to compare

New Features

General Improvements

v0.3.3 - 2020-06-26

26 Jun 18:23
Compare
Choose a tag to compare

General Improvements

v0.3.2 - 2020-02-03

03 Feb 14:44
Compare
Choose a tag to compare

General Improvements

v0.3.1 - 2020-01-22

22 Jan 09:16
Compare
Choose a tag to compare

New Features

General Improvements

v0.3.0 - 2019-12-23

23 Dec 17:16
Compare
Choose a tag to compare

New Features

v0.2.2 - 2019-12-10

10 Dec 15:59
Compare
Choose a tag to compare

Resolved Issues

v0.2.1 - 2019-11-25

25 Nov 16:06
Compare
Choose a tag to compare

Resolved Issues

v0.2.0 - 2019-11-11

11 Nov 15:35
Compare
Choose a tag to compare

This release introduces a big reorganization of the project and some API changes with a strong focus on simplicity and usability.

New Features

  • Ability to pass the data both as CSV files or DataFrames
  • Ability to pass the Metadata both as a JSON file or as a python dict
  • Simplified metadata format
  • Fixed Primary Key generation issues
  • Added support for Integer Primary Keys
  • Added boolean modeling
  • Improved categorical distribution modeling
  • Fixed incorrect number of children rows modeling
  • Fixed incorrect null values modeling

Special thanks to @csala and @JDTheRipperPC for the hard work put on making this release possible!

Resolved issues