You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
> **`ydata-synthetic` is now `fg-data-synthetic`.** This package has been renamed to `fg-data-synthetic`. Please follow the [Migration Guide](#migration-guide) as soon as possible — the old package will no longer receive updates or bug fixes.
@@ -18,6 +21,40 @@ A package to generate synthetic tabular and time-series data leveraging the stat
18
21
> - A new streamlit app that delivers the synthetic data generation experience with a UI interface. A low code experience for the quick generation of synthetic data
19
22
> - A new fast synthetic data generation model based on Gaussian Mixture. So you can quickstart in the world of synthetic data generation without the need for a GPU.
20
23
> - A conditional architecture for tabular data: CTGAN, which will make the process of synthetic data generation easier and with higher quality!
24
+
25
+
26
+
## Migration Guide
27
+
28
+
### 1. Uninstall the old package
29
+
30
+
```bash
31
+
pip uninstall ydata-synthetic
32
+
```
33
+
34
+
### 2. Install the new package
35
+
36
+
```bash
37
+
pip install fg-data-synthetic
38
+
```
39
+
40
+
### 3. Update your imports
41
+
42
+
Find and replace all occurrences of the old import in your codebase:
43
+
44
+
```python
45
+
# Before
46
+
import ydata_synthetic
47
+
from ydata_synthetic.synthesizers.regular import RegularSynthesizer
48
+
49
+
# After
50
+
import data_synthetic
51
+
from data_synthetic.synthesizers.regular import RegularSynthesizer
52
+
```
53
+
54
+
You can use this one-liner to find all affected files:
0 commit comments