-
-
Notifications
You must be signed in to change notification settings - Fork 225
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
Version 2.0.0a1 #875
Merged
Merged
Version 2.0.0a1 #875
Conversation
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 was
linked to
issues
Aug 4, 2022
Closed
Closed
This was
linked to
issues
Aug 12, 2022
Closed
2 tasks
…o development-2.0
…o development-2.0
benjamc
approved these changes
Oct 11, 2022
dengdifan
reviewed
Oct 11, 2022
dengdifan
reviewed
Oct 11, 2022
dengdifan
reviewed
Oct 11, 2022
dengdifan
reviewed
Oct 11, 2022
dengdifan
approved these changes
Oct 12, 2022
This was referenced Oct 17, 2022
Closed
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
documentation
Documentation is needed/added.
enhancement
example
feature
test
Tests are needed/added.
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.
Big pull-request to make SMAC more user-friendly.
Documentation
https://automl.github.io/SMAC3/development-2.0/
Todo
update_model
orupdate_acquisition_function
,n_iteration
(current iteration?), etc.get_meta
get_next_run
->get_next_trial
in intensifierrun_value
->trial_value
andrun_info
->trial_info
get_meta
method, revise docstrings, fix mypi, add copyright, …)consider_for_higher_budgets_state
, …)Required for release candidate:
Discussions / Postponed improvements
tell
. Partially works forintensifier
already.Findings
_get_timebound_for_intensification
(influences thetime_bound
from theprocess_results
method from the intensifier) in base_smbo.py as the time for the calculation is never 100% the same. Setting it to a fixed number results in reproducible results.Changelog
Big Changes
meta
property now, all of which describe the initial state of SMAC. The facade collects all metadata and saves the initial state of the scenario.old
to the old run is added (e.g., the name was test, it becomes test-old).New Features
terminate_cost_threshold
in the scenario to stop the optimization after a configuration was evaluated with a cost lower than the threshold.MeanAggregationStrategy
supports objective weights now.get_incumbent
orget_pareto_front
.Fixes
Optimization Changes
max_ratio
will limit bothn_configs
andn_configs_per_hyperparameter
but not additional configurationsmax_ratio
to 0.1.Code Related