-
-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add versions 2023 q2 #539
Merged
Merged
Add versions 2023 q2 #539
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2eb68fc
Fix versions for June 2023 benchmark
PGijsbers ad744d1
Add 2023Q2 framework tag
PGijsbers 6c1ba5b
Merge branch 'master' into add_versions_2023Q2
PGijsbers aaa8da9
Use encoded values for inference
PGijsbers 4dd4240
Add us-east-2 AMI
PGijsbers 1b5c978
Merge branch 'master' into add_versions_2023Q2
PGijsbers b44ffd7
Run docker as root on AWS
PGijsbers 0958571
Add option to add build options for docker build command
PGijsbers c5c6bff
Remove 'infer_speed' artifact as it is not supported in main repo
PGijsbers 1470aa3
Fix pandas 2 not compatible with autosklearn 2 see askl#1672
PGijsbers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,12 +101,14 @@ def _image_exists(self, image): | |
|
||
def _run_container_build_command(self, image, cache): | ||
log.info(f"Building docker image {image}.") | ||
run_cmd("docker build {options} -t {container} -f {script} .".format( | ||
run_cmd("docker build {options} {build_extra_options} -t {container} -f {script} .".format( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because I want to build |
||
options="" if cache else "--no-cache", | ||
container=image, | ||
script=self._script), | ||
script=self._script, | ||
build_extra_options=rconfig().docker.build_extra_options, | ||
), | ||
_live_output_=rconfig().setup.live_output, | ||
_activity_timeout_=rconfig().setup.activity_timeout | ||
_activity_timeout_=rconfig().setup.activity_timeout, | ||
) | ||
log.info(f"Successfully built docker image {image}.") | ||
|
||
|
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,2 +1,3 @@ | ||
packaging<22.0 | ||
openml | ||
pandas<2.0 # https://github.com/automl/auto-sklearn/issues/1672 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
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 |
---|---|---|
@@ -0,0 +1,119 @@ | ||
--- | ||
|
||
######################### | ||
### AutoML frameworks ### | ||
######################### | ||
|
||
AutoGluon: | ||
abstract: true | ||
version: "0.8.0" | ||
|
||
AutoGluon_benchmark: | ||
extends: AutoGluon | ||
description: "AutoGluon with 'best_quality' preset provides the most accurate overall predictor" | ||
params: | ||
_save_artifacts: ['leaderboard', 'info'] | ||
presets: best_quality | ||
_leaderboard_test: True | ||
|
||
AutoGluon_hq: | ||
extends: AutoGluon | ||
description: "AutoGluon with 'high_quality' preset provides generally fast inference speed with high accuracy" | ||
params: | ||
_save_artifacts: ['leaderboard', 'info'] | ||
presets: high_quality | ||
_leaderboard_test: True | ||
|
||
AutoGluon_hq_il001: | ||
extends: AutoGluon | ||
description: "AutoGluon ~3x faster inference at slight performance loss to 'high quality' (self-reported)." | ||
params: | ||
_save_artifacts: ['leaderboard', 'info'] | ||
presets: high_quality | ||
_leaderboard_test: True | ||
infer_limit: 0.01 | ||
|
||
autosklearn: | ||
version: '0.15.0' | ||
|
||
autosklearn2: | ||
extends: autosklearn | ||
params: | ||
_askl2: true | ||
|
||
AutoWEKA: | ||
version: '2.6' | ||
|
||
flaml: | ||
version: '1.2.4' | ||
|
||
GAMA: | ||
abstract: true | ||
version: '22.0.0' | ||
|
||
GAMA_benchmark: | ||
extends: GAMA | ||
params: | ||
goal: performance | ||
|
||
H2OAutoML: | ||
version: '3.40.0.4' | ||
|
||
lightautoml: | ||
version: '0.3.7.3' | ||
|
||
mljarsupervised: | ||
abstract: true | ||
version: '0.11.5' | ||
|
||
mljarsupervised_benchmark: | ||
extends: mljarsupervised | ||
description: "MLJar using 'Compete' mode to provide most accurate predictor" | ||
params: | ||
mode: Compete | ||
|
||
mljarsupervised_perform: | ||
extends: mljarsupervised | ||
description: "MLJar using 'Perform' mode to provide fast inference" | ||
params: | ||
mode: Perform | ||
|
||
MLPlan: | ||
abstract: true | ||
version: '0.2.5' | ||
|
||
MLPlanWEKA: | ||
extends: MLPlan | ||
params: | ||
_backend: weka | ||
|
||
mlr3automl: | ||
version: '#f667900292e3ded64bb419285c71cd5d1d2c4301' | ||
project: https://github.com/a-hanf/mlr3automl | ||
|
||
TPOT: | ||
version: '0.12.0' | ||
|
||
|
||
####################################### | ||
### Non AutoML reference frameworks ### | ||
####################################### | ||
|
||
constantpredictor: {} | ||
|
||
DecisionTree: | ||
version: '1.2.2' | ||
|
||
RandomForest: | ||
version: '1.2.2' | ||
params: | ||
n_estimators: 2000 | ||
|
||
ranger: | ||
version: 'stable' | ||
|
||
TunedRandomForest: | ||
version: '1.2.2' | ||
params: | ||
n_estimators: 2000 | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because of #495 (comment)