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.
Made a few updates to align AMLB with AutoGluon 1.0's API.
Note that all changes are backwards compatible. For AutoGluon 1.0 exclusive logic, I added if/else checks so it continues to work with older versions: Further, the mainline AMLB code works with AutoGluon 1.0 already as old methods were deprecated but not removed, it will just log deprecation warnings.
Changes related to AutoGluon 1.0:
persist_models
->persist
persist
max_memory=0.4 -> removed as it is now the defaultpredictor.predict_from_proba
to allow for decision threshold calibration (not enabled by default)silent=True
toleaderboard
call, as it is now silent by default.General improvements unrelated to AutoGluon 1.0:
config.max_runtime_seconds
to be None whengood_quality
orhigh_quality
preset is specified and avoid crashing.set -e
: Ensure install script crashes when an error occurs rather than continuing (previously could lead to corrupted installs sneaking by and being ran on datasets, now they should error properly)awslabs/autogluon
toautogluon/autogluon
(it was migrated last year,awslabs/autogluon
redirects toautogluon/autogluon
)