Releases: sdv-dev/CTGAN
v0.7.1 - 2023-02-23
This release fixes a bug that prevented the CTGAN
model from being saved after sampling.
Bugs Fixed
- Cannot save CTGANSynthesizer after sampling (TypeError) - Issue #270 by @pvk-developer
v0.7.0 - 2023-01-20
This release adds support for python 3.10 and drops support for python 3.6. It also fixes a couple of the most common warnings that were surfacing.
New Features
- Support Python 3.10 and 3.11 - Issue #259 by @pvk-developer
Bugs Fixed
- Fix SettingWithCopyWarning (may be leading to a numerical calculation bug) - Issue #215 by @amontanez24
- FutureWarning in data_transformer with pandas 1.5.0 - Issue #246 by @amontanez24
Maintenance
- CTGAN Package Maintenance Updates - Issue #257 by @amontanez24
v0.6.0 - 2022-10-07
This release renames the models in CTGAN. CTGANSynthesizer
is now called CTGAN
and TVAESynthesizer
is now called TVAE
.
New Features
- Rename synthesizers - Issue #243 by @amontanez24
v0.5.2 - 2022-08-18
This release updates CTGAN to use the latest version of RDT. It also includes performance and robustness updates to the data transformer.
Issues closed
- Bump rdt version - Issue #242 by @katxiao
- Single thread data transform is slow for huge table - Issue #151 by @mfhbree
- Fix RDT api - Issue #232 by @pvk-developer
- Update macos to use latest version. - Issue #237 by @pvk-developer
- Update the RDT version to 1.0 - Issue #224 by @pvk-developer
- Update slack invite link. - Issue #222 by @pvk-developer
- robustness fix, when data have less rows than the default number of cl… - Issue #211 by @Deathn0t
v0.5.1 - 2022-02-25
Issues closed
- Update self.decoder with correct variable name - Issue #203 by @tejuafonja
- Add random state - Issue #204 by @katxiao
v0.5.0 - 2021-11-18
This release adds support for Python 3.9 and updates dependencies to ensure compatibility with the rest of the SDV ecosystem, and upgrades to the latests RDT release.
Issues closed
- Add support for Python 3.9 - Issue #177 by @pvk-developer
- Add pip check to CI workflows - Issue #174 by @pvk-developer
- Typo in
CTGAN
code - Issue #158 by @ori-katz100 and @fealho
0.4.3 - 2021-07-12
Dependency upgrades to ensure compatibility with the rest of the SDV ecosystem.
0.4.2 - 2021-04-27
In this release, the way in which the loss function of the TVAE model was computed has been fixed. In addition, the default value of the discriminator_decay
has been changed to a more optimal value. Also some improvements to the tests were added.
Issues closed
v0.4.1 - 2021-03-30
This release exposes all the hyperparameters which the user may find useful for both CTGAN
and TVAE
. Also TVAE
can now be fitted on datasets that are shorter than the batch size and drops the last batch only if the data size is not divisible by the batch size.