MultiTable
Bases: BaseSynthesizer
MultiTable synthesizer class.
Methods
fit
: train a synthesizer instance.sample
: request synthetic data.status
: current status of the synthesizer instance.
Note
The synthesizer instance is created in the backend only when the fit
method is called.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
write_connector
|
UID | Connector
|
Connector of type RDBMS to be used to write the samples |
required |
uid
|
UID
|
(optional) UID to identify this synthesizer |
None
|
name
|
str
|
(optional) Name to be used when creating the synthesizer. Calculated internally if not provided |
None
|
client
|
Client
|
(optional) Client to connect to the backend |
None
|
Source code in ydata/sdk/synthesizers/multitable.py
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 |
|
fit(X, privacy_level=PrivacyLevel.HIGH_FIDELITY, datatype=None, sortbykey=None, entities=None, generate_cols=None, exclude_cols=None, dtypes=None, target=None, anonymize=None, condition_on=None)
Fit the synthesizer.
The synthesizer accepts as training dataset a YData DataSource
.
Except X, all the other arguments are for now ignored until they are supported.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X
|
DataSource
|
DataSource to Train |
required |
Source code in ydata/sdk/synthesizers/multitable.py
sample(frac=1, write_connector=None)
Sample from a MultiTableSynthesizer
instance.
The sample is saved in the connector that was provided in the synthesizer initialization
or in the
Parameters:
Name | Type | Description | Default |
---|---|---|---|
frac
|
int | float
|
fraction of the sample to be returned |
1
|