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
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,14 +78,15 @@ The below models are supported:
78
78
79
79
### Examples
80
80
Here you can find usage examples of the package and models to synthesize tabular data.
81
-
- Synthesizing the minority class with VanillaGAN on credit fraud dataset [](https://colab.research.google.com/github/ydataai/ydata-synthetic/blob/master/examples/regular/gan_example.ipynb)
81
+
82
+
- 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)
82
83
- 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)
83
84
- More examples are continuously added and can be found in `/examples` directory.
84
85
85
86
### Datasets for you to experiment
86
87
Here are some example datasets for you to try with the synthesizers:
"# Note: You can select between running the Notebook on \"CPU\" or \"GPU\"\n",
23
+
"# Click \"Runtime > Change Runtime time\" and set \"GPU\""
24
+
],
25
+
"metadata": {
26
+
"id": "Kh7c1F1J_sD7"
27
+
},
28
+
"execution_count": null,
29
+
"outputs": []
30
+
},
31
+
{
32
+
"cell_type": "code",
33
+
"source": [
34
+
"#Uncomment to install ydata-synthetic lib\n",
35
+
"#!pip install ydata-synthetic"
36
+
],
37
+
"metadata": {
38
+
"id": "fwXSWiYu_tl0"
39
+
},
40
+
"execution_count": null,
41
+
"outputs": []
42
+
},
43
+
{
44
+
"cell_type": "markdown",
45
+
"source": [
46
+
"# Tabular Synthetic Data Generation with CTGAN\n",
47
+
"- CTGAN - Implemented accordingly with the [paper](https://arxiv.org/pdf/1907.00503.pdf)\n",
48
+
"- This notebook is an example of how to use CTGAN to generate synthetic tabular data with numeric and categorical features.\n",
49
+
"\n",
50
+
"## Dataset\n",
51
+
"\n",
52
+
"- The data used is the [Adult Census Income](https://www.kaggle.com/datasets/uciml/adult-census-income) which we will fecth by importing the `pmlb` library (a wrapper for the Penn Machine Learning Benchmark data repository).\n"
0 commit comments