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
+24-27Lines changed: 24 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,16 @@
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.
Join us on [](https://tiny.ydata.ai/dcai-ydata-synthetic)
15
12
16
-
# YData Synthetic
13
+
# Data Synthetic
17
14
A package to generate synthetic tabular and time-series data leveraging the state of the art generative models.
18
15
19
16
## 🎊 The exciting features:
@@ -72,7 +69,7 @@ Synthetic data can be used for many applications:
72
69
> Check out the [Community Version](https://ydata.ai/ydata-fabric-free-trial).
73
70
74
71
75
-
# ydata-synthetic
72
+
# fg-data-synthetic
76
73
This repository contains material related with architectures and models for synthetic data, from Generative Adversarial Networks (GANs) to Gaussian Mixtures.
77
74
The repo includes a full ecosystem for synthetic data generation, that includes different models for the generation of synthetic structure data and time-series.
78
75
All the Deep Learning models are implemented leveraging Tensorflow 2.0.
@@ -81,11 +78,11 @@ Several example Jupyter Notebooks and Python scripts are included, to show how t
81
78
Are you ready to learn more about synthetic data and the bext-practices for synthetic data generation?
82
79
83
80
## Quickstart
84
-
The source code is currently hosted on GitHub at: https://github.com/ydataai/ydata-synthetic
81
+
The source code is currently hosted on GitHub at: https://github.com/Data-Centric-AI-Community/fg-data-synthetic
85
82
86
-
Binary installers for the latest released version are available at the [Python Package Index (PyPI).](https://pypi.org/project/ydata-synthetic/)
87
-
```commandline
88
-
pip install ydata-synthetic
83
+
Binary installers for the latest released version are available at the [Python Package Index (PyPI).](https://pypi.org/project/fg-data-synthetic/)
84
+
```bash
85
+
pip install fg-data-synthetic
89
86
```
90
87
91
88
### The UI guide for synthetic data generation
@@ -98,19 +95,19 @@ The streamlit app is available form *v1.0.0* onwards, and supports the following
98
95
#### Installation
99
96
100
97
```commandline
101
-
pip install ydata-synthetic[streamlit]
98
+
pip install fg-data-synthetic[streamlit]
102
99
```
103
100
#### Quickstart
104
101
Use the code snippet below in a python file (Jupyter Notebooks are not supported):
105
102
```python
106
-
from ydata_synthetic import streamlit_app
103
+
from data_synthetic import streamlit_app
107
104
108
105
streamlit_app.run()
109
106
```
110
107
111
-
Or use the file streamlit_app.py that can be found in the [examples folder](https://github.com/ydataai/ydata-synthetic/tree/master/examples/streamlit_app.py).
108
+
Or use the file streamlit_app.py that can be found in the [examples folder](https://github.com/Data-Centric-AI-Community/fg-data-synthetic/tree/master/examples/streamlit_app.py).
112
109
113
-
```commandline
110
+
```bash
114
111
python -m streamlit_app
115
112
```
116
113
@@ -126,10 +123,10 @@ The below models are supported:
126
123
127
124
### Examples
128
125
Here you can find usage examples of the package and models to synthesize tabular data.
129
-
- Fast tabular data synthesis on adult census income dataset [](https://colab.research.google.com/github/ydataai/ydata-synthetic/blob/master/examples/regular/models/Fast_Adult_Census_Income_Data.ipynb)
130
-
- Tabular synthetic data generation with CTGAN on adult census income dataset [](https://colab.research.google.com/github/ydataai/ydata-synthetic/blob/master/examples/regular/models/CTGAN_Adult_Census_Income_Data.ipynb)
131
-
- Time Series synthetic data generation with TimeGAN on stock dataset [](https://colab.research.google.com/github/ydataai/ydata-synthetic/blob/master/examples/timeseries/TimeGAN_Synthetic_stock_data.ipynb)
132
-
- Time Series synthetic data generation with DoppelGANger on FCC MBA dataset [](https://colab.research.google.com/github/ydataai/ydata-synthetic/blob/master/examples/timeseries/DoppelGANger_FCC_MBA_Dataset.ipynb)
126
+
- Fast tabular data synthesis on adult census income dataset [](https://colab.research.google.com/github/Data-Centric-AI-Community/fg-data-synthetic/blob/master/examples/regular/models/Fast_Adult_Census_Income_Data.ipynb)
127
+
- Tabular synthetic data generation with CTGAN on adult census income dataset [](https://colab.research.google.com/github/Data-Centric-AI-Community/fg-data-synthetic/blob/master/examples/regular/models/CTGAN_Adult_Census_Income_Data.ipynb)
128
+
- Time Series synthetic data generation with TimeGAN on stock dataset [](https://colab.research.google.com/github/Data-Centric-AI-Community/fg-data-synthetic/blob/master/examples/timeseries/TimeGAN_Synthetic_stock_data.ipynb)
129
+
- Time Series synthetic data generation with DoppelGANger on FCC MBA dataset [](https://colab.research.google.com/github/Data-Centric-AI-Community/fg-data-synthetic/blob/master/examples/timeseries/DoppelGANger_FCC_MBA_Dataset.ipynb)
133
130
- More examples are continuously added and can be found in `/examples` directory.
134
131
135
132
### Datasets for you to experiment
@@ -140,8 +137,8 @@ Here are some example datasets for you to try with the synthesizers:
- [FCC MBA data](https://github.com/Data-Centric-AI-Community/fg-data-synthetic/tree/master/data)
145
142
146
143
## Project Resources
147
144
@@ -172,7 +169,7 @@ We are open to collaboration! If you want to start contributing you only need to
172
169
For support in using this library, please join our Discord server. Our Discord community is very friendly and great about quickly answering questions about the use and development of the library. [Click here to join our Discord community!](https://tiny.ydata.ai/dcai-ydata-synthetic)
173
170
174
171
## FAQs
175
-
Have a question? Check out the [Frequently Asked Questions](https://ydata.ai/resources/10-most-asked-questions-on-ydata-synthetic) about `ydata-synthetic`. If you feel something is missing, feel free to [book a beary informal chat with us](https://meetings.hubspot.com/fabiana-clemente).
172
+
Have a question? Check out the [Frequently Asked Questions](https://ydata.ai/resources/10-most-asked-questions-on-ydata-synthetic) about `fg-data-synthetic`. If you feel something is missing, feel free to [book a beary informal chat with us](https://meetings.hubspot.com/fabiana-clemente).
0 commit comments