Skip to content

Releases: sdv-dev/SDV

v1.3.0 - 2023-08-14

14 Aug 17:52
Compare
Choose a tag to compare

This release adds two new methods to the MultiTableMetadata: detect_from_csvs and detect_From_dataframes. These methods allow you to detect metadata for a whole dataset at once by either loading them from a folder or a dictionary mapping table names to the pandas.DataFrames. The SingleTableMetadata can now be visualized! Additionally, there is now a summarized option in the show_table_details parameter of the visualize methods. This will print each sdtype in the table and the number of columns that have that sdtype.

Additionally, this release patches a bug that prevented custom constraints from working on columns that were primary or alternate keys. It also adds support for Python 3.11!

New Features

  • Align default transformers between SDV and RDT - Issue #1484 by @R-Palazzo
  • Add visualize method to SingleTableMetadata - Issue #1517 by @pvk-developer
  • Add detect_from_csvs and detect_from_dataframes methods to MultiTableMetadata - Issue #1520 by @R-Palazzo
  • Allow empty tables to be fitted using fit_processed_data - Issue #1524 by @fealho
  • Summarized metadata visualization - Issue #1525 by @pvk-developer

Bugs Fixed

  • Cannot use custom constraint transforms for certain columns (inconsistent ordering in forward vs. reverse) - Issue #1476 by @fealho
  • Cannot create custom constraint with primary key - Issue #1514 by @amontanez24

Maintenance

v1.2.1 - 2023-07-13

13 Jul 20:01
Compare
Choose a tag to compare

This release fixes a bug that caused the Inequality constraint and others to fail if there were None values in a datetime column.

Bugs Fixed

Maintenance

Internal

  • Make HMA use hierarchical sampling mixin - Issue #1428 by @frances-h
  • Move progress bar out of base multi table synthesizer - Issue #1486 by @R-Palazzo

v1.2.0 - 2023-06-07

07 Jun 20:48
Compare
Choose a tag to compare

This release adds a parameter called verbose to the HMASynthesizer's initialization. Setting it to True will show progress bars during the fitting steps. Additionally, performance optimizations were made to the modeling and initialization of the HMASynthesizer.

Multiple changes were made to enhance constraints. The Range constraint was improved to be able to generate more accurate data when null values are provided. Constraints are also now validated against the data when running validate() on any synthesizer.

Finally, some warnings were resolved.

New Features

Bugs Fixed

Internal

Maintenance

v1.1.0 - 2023-05-10

10 May 21:12
Compare
Choose a tag to compare

This release adds a new initialization parameter to synthesizers called locales that allows users to set the locales to use for all columns that have a locale based sdtype (eg. address or phone_number). Additionally, it adds support for Pandas 2.0!

Multiple enhancements were made to improve the performance of data and metadata validation in synthesizers. The Inequality constraint was improved to be able to generate more scenarios of data concerning the presence of NaNs. Finally, many warnings have been resolved.

New Features

  • Add add-on detection for new constraints - Issue #1397 by @frances-h
  • Add add-on detection for multi and single table synthesizers - Issue #1385 by @frances-h
  • Setting a locale for all my anonymized (PII) columns - Issue #1371 by @frances-h

Bugs Fixed

Maintenance

Internal

v1.0.1 - 2023-04-20

20 Apr 19:04
Compare
Choose a tag to compare

This release improves the load_custom_constraint_classes method by removing the table_name parameter and just loading the constraint
for all tables instead. It also improves some error messages as well as removes some of the warnings that have been surfacing.

Support for sdtypes is enhanced by resolving a bug that was incorrecttly specifying Faker functions for some of them. Support for datetime formats has also been improved. Finally, the path argument in some save and load methods was changed to filepath for consistency.

New Features

  • Method load_custom_constraint_classes does not need table_name parameter - Issue #1354 by @R-Palazzo
  • Improve error message for invalid primary keys - Issue #1341 by @R-Palazzo
  • Add functionality to find version add-on - Issue #1309 by @frances-h

Bugs Fixed

  • Certain sdtypes cause Faker to raise error - Issue #1346 by @frances-h
  • Change path to filepath for load and save methods - Issue #1352 by @fealho
  • Some datetime formats cause InvalidDataError, even if the datetime matches the format - Issue #1136 by @amontanez24

Internal

  • Inequality constraint raises RuntimeWarning (invalid value encountered in log) - Issue #1275 by @frances-h
  • Pandas FutureWarning: Default dtype for Empty Series will be 'object' - Issue #1355 by @R-Palazzo
  • Pandas FutureWarning: Length 1 tuple will be returned - Issue #1356 by @R-Palazzo

v1.0.0 - 2023-03-28

28 Mar 20:39
Compare
Choose a tag to compare

This is a major release that introduces a new API to the SDV aimed at streamlining the process of synthetic data generation! To achieve this, this release includes the addition of several large features.

Metadata

Some of the most notable additions are the new SingleTableMetadata and MultiTableMetadata classes. These classes enable a number of features that make it easier to synthesize your data correctly such as:

  • Automatic data detection - Calling metadata.detect_from_dataframe() or metadata.detect_from_csv() will populate the metadata autonomously with values it thinks represent the data.
  • Easy updating - Once an instance of the metadata is created, values can be easily updated using a number of methods defined in the API. For more info, view the docs.
  • Metadata validation - Calling metadata.validate() will return a report of any invalid definitions in the metadata specification.
  • Upgrading - Users with the previous metadata format can easily update to the new specification using the upgrade_metadata() method.
  • Saving and loading - The metadata itself can easily be saved to a json file and loaded back up later.

Class and Module Names

Another major change is the renaming of our core modeling classes and modules. The name changes are meant to highlight the difference between the underlying machine learning models, and the objects responsible for the end-to-end workflow of generating synthetic data. The main name changes are as follows:

  • tabular -> single_table
  • relational -> multi_table
  • timeseries -> sequential
  • BaseTabularModel -> BaseSingleTableSynthesizer
  • GaussianCopula -> GaussianCopulaSynthesizer
  • CTGAN -> CTGANSynthesizer
  • TVAE -> TVAESynthesizer
  • CopulaGan -> CopulaGANSynthesizer
  • PAR -> PARSynthesizer
  • HMA1 -> HMASynthesizer

In SDV 1.0, synthesizers are classes that take in metadata and handle data preprocessing, model training and model sampling. This is similar to the previous BaseTabularModel in SDV <1.0.

Synthetic Data Workflow

Synthesizers in SDV 1.0 define a clear workflow for generating synthetic data.

  1. Synthesizers are initialized with a metadata class.
  2. They can then be used to transform the data and apply constraints using the synthesizer.preprocess() method. This step also validates that the data matches the provided metadata to avoid errors in fitting or sampling.
  3. The processed data can then be fed into the underlying machine learning model using synthesizer.fit_processed_data(). (Alternatively, data can be preprocessed and fit to the model using synthesizer.fit().)
  4. Data can then be sampled using synthesizer.sample().

Each synthesizer class also provides a series of methods to help users customize the transformations their data goes through. Read more about that here.

Notice that the preprocessing and model fitting steps can now be separated. This can be helpful if preprocessing is time consuming or if the data has been processed externally.

Other Highly Requested Features

Another major addition is control over randomization. In SDV <1.0, users could set a seed to control the randomization for only some columns. In SDV 1.0, randomization is controlled for all columns. Every new call to sample generates new data, but the synthesizer's seed can be reset to the original state using synthesizer.reset_randomization(), enabling reproducibility.

SDV 1.0 adds accessibility and transparency into the transformers used for preprocessing and underlying machine learning models.

  • Using the synthesizer.get_transformers() method, you can access the transformers used to preprocess each column and view their properties. This can be useful for debugging and accessing privacy information like mappings used to mask data.
  • Distribution parameters learned by copula models can be accessed using the synthesizer.get_learned_distributions() method.

PII handling is improved by the following features:

  • Primary keys can be set to natural sdtypes (eg. SSN, email, name). Previously they could only be numerical or text.
  • The PseudoAnonymizedFaker can be used to provide consistent mapping to PII columns. As mentioned before, the mapping itself can be accessed by viewing the transformers for the column using synthesizer.get_transformers().
  • A bug causing PII columns to slow down modeling is patched.

Finally, the synthetic data can now be easily evaluated using the evaluate_quality() and run_diagnostic() methods. The data can be compared visually to the actual data using the get_column_plot() and get_column_pair_plot() methods. For more info on how to visualize or interpret the synthetic data evaluation, read the docs here.

Issues Resolved

New Features

  • Change auto_assign_transformers to handle id types - Issue #1325 by @pvk-developer
  • Change 'text' sdtype to 'id' - Issue #1324 by @frances-h
  • In upgrade_metadata, return the object instead of writing it to a JSON file - Issue #1319 by @frances-h
  • In upgrade_metadata index primary keys should be converted to text - Issue #1318 by @amontanez24
  • Add load_from_dict to SingleTableMetadata and MultiTableMetadata - Issue #1314 by @amontanez24
  • Throw a SynthesizerInputError if FixedCombinations constraint is applied to a column that is not boolean or categorical - Issue #1306 by @frances-h
  • Missing save and load methods for HMASynthesizer - Issue #1262 by @amontanez24
  • Better input validation when creating single and multi table synthesizers - Issue #1242 by @fealho
  • Better input validation on HMASynthesizer.sample - Issue #1241 by @R-Palazzo
  • Validate that relationship must be between a primary key and foreign key - Issue #1236 by @fealho
  • Improve update_column validation for pii attribute - Issue #1226 by @pvk-developer
  • Order the output of get_transformers() based on the metadata - Issue #1222 by @pvk-developer
  • Log if any numerical_distributions will not be applied - Issue #1212 by @fealho
  • Improve error handling for GaussianCopulaSynthesizer: numerical_distributions - Issue #1211 by @fealho
  • Improve error handling when validating constraints - Issue #1210 by @fealho
  • Add fake_companies demo - Issue #1209 by @amontanez24
  • Allow me to create a custom constraint class and use it in the same file - Issue #1205 by @amontanez24
  • Sampling should reset after retraining the model - Issue #1201 by @pvk-developer
  • Change function name HMASynthesizer.update_table_parameters --> set_table_parameters - Issue #1200 by @pvk-developer
  • Add get_info method to synthesizers - Issue #1199 by @fealho
  • Add evaluation methods to synthesizer - Issue #1190 by @fealho
  • Update evaluate.py to work with the new metadata - Issue #1186 by @fealho
  • Remove old code - Issue #1181 by @pvk-developer
  • Drop support for python 3.6 and add support for 3.10 - Issue #1176 by @fealho
  • Add constraint methods to MultiTableSynthesizers - Issue #1171 by @fealho
  • Update custom constraint workflow - Issue #1169 by @pvk-developer
  • Add get_constraints method to synthesizers - Issue #1168 by @pvk-developer
  • Migrate adding and validating constraints to BaseSynthesizer - Issue #1163 by @pvk-developer
  • Change metadata "SCHEMA_VERSION" --> "METADATA_SPEC_VERSION" - Issue #1139 by @amontanez24
  • Add ability to reset random sampling - Issue #1130 by @pvk-developer
  • Add get_available_demos - Issue #1129 by @fealho
  • Add demo loading functionality - Issue #1128 by @fealho
  • Use logging instead of printing in detect methods - Issue #1107 by @fealho
  • Add save and load methods to synthesizers - Issue #1106 by @pvk-developer
  • Add sampling methods to PARSynthesizer - Issue #1083 by @amontanez24
  • Add transformer methods to PARSynthesizer - Issue #1082 by @fealho
  • Add validate to PARSynthesizer - Issue #1081 by @amontanez24
  • Add preprocess and fit methods to PARSynthesizer - I...
Read more

v0.18.0 - 2023-01-24

24 Jan 21:08
Compare
Choose a tag to compare

This release adds suppport for Python 3.10 and drops support for 3.6.

Maintenance

v0.17.2 - 2022-12-08

08 Dec 23:42
Compare
Choose a tag to compare

This release fixes a bug in the demo module related to loading the demo data with constraints. It also adds a name to the demo datasets. Finally, it bumps the version of SDMetrics used.

Maintenance

  • Upgrade SDMetrics requirement to 0.8.0 - Issue #1125 by @katxiao

New Features

Bugs Fixed

v0.17.1 - 2022-09-29

29 Sep 23:07
Compare
Choose a tag to compare

This release bumps the dependency requirements to use the latest version of SDMetrics.

Maintenance

  • Patch release: Bump required version for SDMetrics - Issue #1010 by @katxiao

v0.17.0 - 2022-09-09

09 Sep 21:40
Compare
Choose a tag to compare

This release updates the code to use RDT version 1.2.0 and greater, so that those new features are now available in SDV. This changes the transformers that are available in SDV models to be those that are in RDT version 1.2.0. As a result, some arguments for initializing models have changed.

Additionally, this release fixes bugs related to loading models with custom constraints. It also fixes a bug that added NaNs to the index of sampled data when using sample_remaining_columns.

Bugs Fixed

New Features

  • Change default metrics for evaluate - Issue #949 by @fealho

Maintenance