Add BayesianGenerator (Gaussian Copula)
Browse files- tabgan/auto_synth.py +5 -0
tabgan/auto_synth.py
CHANGED
|
@@ -26,6 +26,7 @@ from .sampler import (
|
|
| 26 |
GANGenerator,
|
| 27 |
ForestDiffusionGenerator,
|
| 28 |
OriginalGenerator,
|
|
|
|
| 29 |
)
|
| 30 |
|
| 31 |
logger = logging.getLogger(__name__)
|
|
@@ -67,6 +68,10 @@ _DEFAULT_GENERATORS = {
|
|
| 67 |
"cls": ForestDiffusionGenerator,
|
| 68 |
"params": {},
|
| 69 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
"Random Baseline": {
|
| 71 |
"cls": OriginalGenerator,
|
| 72 |
"params": {},
|
|
|
|
| 26 |
GANGenerator,
|
| 27 |
ForestDiffusionGenerator,
|
| 28 |
OriginalGenerator,
|
| 29 |
+
BayesianGenerator,
|
| 30 |
)
|
| 31 |
|
| 32 |
logger = logging.getLogger(__name__)
|
|
|
|
| 68 |
"cls": ForestDiffusionGenerator,
|
| 69 |
"params": {},
|
| 70 |
},
|
| 71 |
+
"Bayesian (Copula)": {
|
| 72 |
+
"cls": BayesianGenerator,
|
| 73 |
+
"params": {},
|
| 74 |
+
},
|
| 75 |
"Random Baseline": {
|
| 76 |
"cls": OriginalGenerator,
|
| 77 |
"params": {},
|