Commit a4190e6
Add Tabnet support (#168)
* first commit for the addition of the TabDDPM plugin
* Add DDPM test script and update DDPM plugin
* add TabDDPM class and refactor
* handle discrete cols and label generation
* add hparam space and update tests of DDPM
* debug and test DDPM
* update TensorDataLoader and training loop
* clear bugs
* debug for regression tasks
* debug for regression tasks; ALL TESTS PASSED
* remove the official repo of TabDDPM
* passed all pre-commit checks
* convert assert to conditional AssertionErrors
* added an auto annotation tool
* update auto-anno and generate annotations
* remove auto-anno and flake8 noqa
* add python<3.9 compatible annotations
* remove star import
* replace builtin type annos to typing annos
* resolve py38 compatibility issue
* tests/plugins/generic/test_ddpm.py
* change TabDDPM method signatures
* remove Iterator subscription
* update AssertionErrors, add EarlyStop callback, removed additional MLP, update logging
* remove TensorDataLoader, update test_ddpm
* update EarlyStopping
* add TabDDPM tutorial, update TabDDPM plugin and encoders
* add TabDDPM tutorial
* major update of FeatureEncoder and TabularEncoder
* add LogDistribution and LogIntDistribution
* update DDPM to use TabularEncoder
* update test_tabular_encoder and debug
* debug and DDPM tutorial OK
* debug LogDistribution and LogIntDistribution
* change discrete encoding of BinEncoder to passthrough; passed all tests in test_tabular_encoder
* add tabnet to plugins/core/models
* add factory.py, let DDPM use TabNet, refactor
* update docstrings and refactor
* fix type annotation compatibility
* make SkipConnection serializable
* fix TabularEncoder.activation_layout
* remove unnecessary code
* fix minor bug and add more nn models in factory
* update pandas and torch version requirement
* update pandas and torch version requirement
* update ddpm tutorial
* restore setup.cfg
* restore setup.cfg
* replace LabelEncoder with OrdinalEncoder
* update setup.cfg
* update setup.cfg
* debug datetimeDistribution
* clean
* update setup.cfg and goggle test
* move DDPM tutorial to tutorials/plugins
* update tabnet.py reference
* update tab_ddpm
* update
* try fixing goggle
* add more activations
* minor fix
* update
* update
* update
* update
* Update tabular_encoder.py
* Update test_goggle.py
* Update tabular_encoder.py
* update
* update
* default cat nonlin of goggle <- gumbel_softmax
* get_nonlin('softmax') <- GumbelSoftmax()
* remove debug logging
* update
* update
* fix merge
* update pip upgrade commands in workflows
* keep pip version to 23.0.1 in workflows
---------
Co-authored-by: Bogdan Cebere <[email protected]>
Co-authored-by: Rob <[email protected]>1 parent 59108bf commit a4190e6
File tree
5 files changed
+10
-5
lines changed- .github/workflows
- src/synthcity/plugins/core/models
5 files changed
+10
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| 30 | + | |
30 | 31 | | |
31 | | - | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
| 57 | + | |
57 | 58 | | |
58 | | - | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| 35 | + | |
35 | 36 | | |
36 | | - | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
24 | 23 | | |
25 | 24 | | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
77 | | - | |
| 77 | + | |
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
1 | 6 | | |
2 | 7 | | |
3 | 8 | | |
| |||
0 commit comments