DoppelGANger
Bases: BaseGANModel
DoppelGANger model. Based on the paper https://dl.acm.org/doi/pdf/10.1145/3419394.3423643.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_parameters |
ModelParameters
|
Parameters used to create the DoppelGANger model. |
required |
Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/ydata_synthetic/synthesizers/timeseries/doppelganger/model.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
|
fit(data, train_arguments, num_cols=None, cat_cols=None)
Fits the DoppelGANger model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
DataFrame
|
A pandas DataFrame with the data to be synthesized. |
required |
train_arguments |
TrainParameters
|
DoppelGANger training arguments. |
required |
num_cols |
list[str] | None
|
List of columns to be handled as numerical |
None
|
cat_cols |
list[str] | None
|
List of columns to be handled as categorical |
None
|
Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/ydata_synthetic/synthesizers/timeseries/doppelganger/model.py
load(path)
staticmethod
Load the DoppelGANger model from a directory. Only the required components to sample new data are loaded.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
class_dict |
Path of the directory where the files were saved. |
required |
Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/ydata_synthetic/synthesizers/timeseries/doppelganger/model.py
sample(n_samples)
Samples new data from the DoppelGANger.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_samples |
int
|
Number of samples to be generated. |
required |
Source code in /opt/hostedtoolcache/Python/3.10.12/x64/lib/python3.10/site-packages/ydata_synthetic/synthesizers/timeseries/doppelganger/model.py
save(path)
Save the DoppelGANger model in a directory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path |
Path of the directory where the files will be saved. |
required |