-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add continuous feature perturbations. --------- Co-authored-by: Ricardo Hernández Medina <[email protected]> Co-authored-by: Henry Webel <[email protected]> Co-authored-by: Marc Pielies Avelli <[email protected]>
- Loading branch information
1 parent
92bced0
commit 49ee412
Showing
48 changed files
with
27,935 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
hydra-core>=1.2.0 | ||
numpy>=1.21.5 | ||
numpy>=1.21.5,<2 | ||
pandas>=1.4.2 | ||
torch>=1.11.0 | ||
matplotlib>=3.5.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
__license__ = "MIT" | ||
__version__ = (1, 4, 10) | ||
__all__ = ["conf", "data", "models", "training_loop", "VAE"] | ||
|
||
HYDRA_VERSION_BASE = "1.2" | ||
|
||
from move import conf, data, models | ||
from move.models.vae import VAE | ||
from move.training.training_loop import training_loop | ||
from move import conf, data, models # noqa:E402 | ||
from move.models.vae import VAE # noqa:E402 | ||
from move.training.training_loop import training_loop # noqa:E402 | ||
|
||
__license__ = "MIT" | ||
__version__ = (1, 5, 0) | ||
__all__ = ["conf", "data", "models", "training_loop", "VAE"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ hydra: | |
job: | ||
config: | ||
override_dirname: | ||
item_sep: ";" | ||
exclude_keys: | ||
- experiment | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,5 @@ training_loop: | |
- 25 | ||
early_stopping: false | ||
patience: 0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
defaults: | ||
- identify_associations_ks_schema | ||
|
||
model: | ||
categorical_weights: ${weights:${data.categorical_inputs}} | ||
continuous_weights: ${weights:${data.continuous_inputs}} | ||
num_hidden: | ||
- 100 | ||
num_latent: 50 | ||
beta: 0.1 | ||
dropout: 0.1 | ||
cuda: false | ||
|
||
training_loop: | ||
lr: 1e-4 | ||
num_epochs: 200 | ||
batch_dilation_steps: | ||
- 50 | ||
- 100 | ||
- 150 | ||
kld_warmup_steps: | ||
- 15 | ||
- 20 | ||
- 25 | ||
early_stopping: false | ||
patience: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,5 @@ training_loop: | |
- 25 | ||
early_stopping: false | ||
patience: 0 | ||
|
||
|
Oops, something went wrong.