forked from automl/Auto-PyTorch
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] Add column transformer (automl#305)
* Match paper libraries-versions * Update README.md * Update README.md * Update README.md * [FIX] master branch README (automl#209) * Enable github actions (automl#273) * Update README.md * Create CITATION.cff * Added column transformer, changed requirements and added tests * remove redundant lines * Remove unwanted change made * Fix bug in test api and dummy forward pass * Fix silly bugs * increase time to pass test * remove parallel capabilities of traditional learners to resolve bug in docs building * almost fixed * Add documentation for tabularfeaturevalidator * fix flake * fix silly bug * address comment from shuhei * rename enc_columns to transformed_columns in the remaining places * fix bug in test * fix mypy * add shuhei's suggestion Co-authored-by: chico <[email protected]> Co-authored-by: Marius Lindauer <[email protected]> Co-authored-by: Frank <[email protected]> Co-authored-by: Francisco Rivera Valverde <[email protected]>
- Loading branch information
1 parent
9002937
commit a11caf4
Showing
13 changed files
with
188 additions
and
137 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
3 changes: 1 addition & 2 deletions
3
autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/extra_trees.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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"n_estimators" : 300, | ||
"n_jobs" : -1 | ||
"n_estimators" : 300 | ||
} |
3 changes: 1 addition & 2 deletions
3
autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/knn.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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"weights" : "uniform", | ||
"n_jobs" : -1 | ||
"weights" : "uniform" | ||
} |
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
3 changes: 1 addition & 2 deletions
3
autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/random_forest.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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"n_estimators" : 300, | ||
"n_jobs" : -1 | ||
"n_estimators" : 300 | ||
} |
1 change: 0 additions & 1 deletion
1
autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/rotation_forest.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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
{ | ||
"n_jobs" : -1 | ||
} |
Oops, something went wrong.