-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inserted Sklearn RobustScaler and PowerTransformer into the pipeline …
…and added tests
- Loading branch information
1 parent
2479de0
commit 9e8dfce
Showing
10 changed files
with
355 additions
and
17 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
28 changes: 28 additions & 0 deletions
28
atomsci/ddm/test/integrative/balancing_trans/jsons/PowerTransformer_transformer.json
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,28 @@ | ||
{ | ||
"dataset_key" : "replaced", | ||
"datastore" : "False", | ||
"uncertainty": "False", | ||
"splitter": "scaffold", | ||
"split_valid_frac": "0.20", | ||
"split_test_frac": "0.20", | ||
"split_strategy": "train_valid_test", | ||
"prediction_type": "classification", | ||
"model_choice_score_type": "roc_auc", | ||
"response_cols" : "active", | ||
"id_col": "compound_id", | ||
"smiles_col" : "rdkit_smiles", | ||
"result_dir": "replaced", | ||
"system": "LC", | ||
"transformers": "True", | ||
"model_type": "NN", | ||
"featurizer": "ecfp", | ||
"feature_transform_type": "PowerTransformer", | ||
"learning_rate": ".0007", | ||
"layer_sizes": "20,10", | ||
"dropouts": "0.3,0.3", | ||
"save_results": "False", | ||
"max_epochs": "2", | ||
"early_stopping_patience": "2", | ||
"verbose": "False", | ||
"seed":"0" | ||
} |
32 changes: 32 additions & 0 deletions
32
atomsci/ddm/test/integrative/balancing_trans/jsons/RobustScaler_transformer.json
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,32 @@ | ||
{ | ||
"dataset_key" : "replaced", | ||
"datastore" : "False", | ||
"uncertainty": "False", | ||
"splitter": "scaffold", | ||
"split_valid_frac": "0.20", | ||
"split_test_frac": "0.20", | ||
"split_strategy": "train_valid_test", | ||
"prediction_type": "classification", | ||
"model_choice_score_type": "roc_auc", | ||
"response_cols" : "active", | ||
"id_col": "compound_id", | ||
"smiles_col" : "rdkit_smiles", | ||
"result_dir": "replaced", | ||
"system": "LC", | ||
"transformers": "True", | ||
"model_type": "NN", | ||
"featurizer": "ecfp", | ||
"feature_transform_type": "RobustScaler", | ||
"robustscaler_with_center": "True", | ||
"robustscaler_with_scaling": "True", | ||
"robustscaler_with_quartile_range": "30.0,80.0", | ||
"robustscaler_unit_variance": "True", | ||
"learning_rate": ".0007", | ||
"layer_sizes": "20,10", | ||
"dropouts": "0.3,0.3", | ||
"save_results": "False", | ||
"max_epochs": "2", | ||
"early_stopping_patience": "2", | ||
"verbose": "False", | ||
"seed":"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
Oops, something went wrong.