File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
# History
2
2
3
+ ## v0.7.1 - 2023-02-23
4
+
5
+ This release fixes a bug that prevented the ` CTGAN ` model from being saved after sampling.
6
+
7
+ ### Bugs Fixed
8
+
9
+ * Cannot save CTGANSynthesizer after sampling (TypeError) - Issue [ #270 ] ( https://github.com/sdv-dev/CTGAN/issues/270 ) by @pvk-developer
10
+
3
11
## v0.7.0 - 2023-01-20
4
12
5
13
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.
Original file line number Diff line number Diff line change 4
4
5
5
__author__ = 'DataCebo, Inc.'
6
6
__email__ = 'info@sdv.dev'
7
- __version__ = '0.7.1.dev0 '
7
+ __version__ = '0.7.1.dev1 '
8
8
9
9
from ctgan .demo import load_demo
10
10
from ctgan .synthesizers .ctgan import CTGAN
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.7.1.dev0
2
+ current_version = 0.7.1.dev1
3
3
commit = True
4
4
tag = True
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?
Original file line number Diff line number Diff line change 117
117
test_suite = 'tests' ,
118
118
tests_require = tests_require ,
119
119
url = 'https://github.com/sdv-dev/CTGAN' ,
120
- version = '0.7.1.dev0 ' ,
120
+ version = '0.7.1.dev1 ' ,
121
121
zip_safe = False ,
122
122
)
You can’t perform that action at this time.
0 commit comments