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.
[FIX] Fixes for Tabular Regression (automl#235)
* Fix hardcoded score and add score in classification. Also set torch seed in regression * Enabled traditional estimators for regression, with tests and exampleS * added documentation, test in progress * Remove traditional pipeline as it is introduced in PR automl#224 * fix flake and mypy * Address comments from fransisco * Increase number of samples and add torch seed to base training evaluate * Fix mypy and flake * in progress * Address comments from shuhei * add coverage for base task pipeline config, and fix tests * Fix flake * revert import statement to fix the patch * fix flake * increase coverage * Increase coverage for api fit * Add coverage for errors while predicting * Update documentation for tabular regression task and installation instructions
- Loading branch information
1 parent
1818445
commit 3995391
Showing
38 changed files
with
1,302 additions
and
907 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
include requirements.txt | ||
include autoPyTorch/utils/logging.yaml | ||
include autoPyTorch/configs/default_pipeline_options.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/classifier_configs/catboost.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/classifier_configs/rotation_forest.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/classifier_configs/random_forest.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/classifier_configs/knn.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/classifier_configs/svm.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/classifier_configs/extra_trees.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/classifier_configs/lgb.json | ||
include autoPyTorch/configs/greedy_portfolio.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/catboost.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/rotation_forest.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/random_forest.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/knn.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/svm.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/extra_trees.json | ||
include autoPyTorch/pipeline/components/setup/traditional_ml/estimator_configs/lgb.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
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
Oops, something went wrong.