-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎨 format yaml files (some had no last blank line)
- Loading branch information
Henry
committed
May 31, 2024
1 parent
e6368a9
commit 0542ff2
Showing
10 changed files
with
43 additions
and
45 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
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ model: | |
|
||
training_loop: | ||
lr: 1e-4 | ||
num_epochs: 200 | ||
num_epochs: 200 |
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,4 +1,3 @@ | ||
|
||
defaults: | ||
- identify_associations_bayes | ||
|
||
|
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,19 +1,18 @@ | ||
|
||
defaults: | ||
- identify_associations_ttest | ||
|
||
batch_size: 10 # number of samples per batch in training loop | ||
batch_size: 10 # number of samples per batch in training loop | ||
|
||
num_refits: 5 #10 is the default # number of times to refit (retrain) model | ||
num_refits: 5 # 10 is the default # number of times to refit (retrain) model | ||
|
||
target_dataset: random.small.drugs # dataset to perturb | ||
target_value: 1 # value to change to | ||
save_refits: True # whether to save refits to interim folder | ||
target_dataset: random.small.drugs # dataset to perturb | ||
target_value: 1 # value to change to | ||
save_refits: True # whether to save refits to interim folder | ||
|
||
model: # model configuration | ||
num_hidden: # list of units in each hidden layer of the VAE encoder/decoder | ||
model: # model configuration | ||
num_hidden: # list of units in each hidden layer of the VAE encoder/decoder | ||
- 1000 | ||
|
||
training_loop: # training loop configuration | ||
lr: 1e-4 # learning rate | ||
num_epochs: 40 # 40 is the default # number of epochs | ||
training_loop: # training loop configuration | ||
lr: 1e-4 # learning rate | ||
num_epochs: 40 # 40 is the default # number of epochs |