-
-
Notifications
You must be signed in to change notification settings - Fork 239
v2.4.0 #1263
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
Draft
benjamc
wants to merge
683
commits into
main
Choose a base branch
from
v2.4.0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or 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
Co-authored-by: timruhkopf <[email protected]> Co-authored-by: Carolin Benjamins <[email protected]> Co-authored-by: dengdifan <[email protected]> Co-authored-by: Alexander Tornede <[email protected]> Co-authored-by: Sarah Krebs <[email protected]>
…then smac does not need to know about the target_function and we can just drop the requirement. Should the user then however decide to call optimize, this must raise an ValueError
…then smac does not need to know about the target_function and we can just drop the requirement. Should the user then however decide to call optimize, this must raise an ValueError
[bug-fix] when check out initial_design by setting n_configs=0 and scenario.n_trials, we will still get at least one config from the initial design on ask. This fixes
…h-additional-arguments Add example for additional arguments
* Added submitting trials in validate in smbo, fix for 937 * Update CHANGELOG.md
* Add SMBO docs * Fix
…tion #946 Purely operating Ask & Tell removes requirement for target_function
… of initializing the attribute during the train call only)
…nitial_design ask and tell without initial design
Bumps [dawidd6/action-send-mail](https://github.com/dawidd6/action-send-mail) from 4 to 5. - [Release notes](https://github.com/dawidd6/action-send-mail/releases) - [Commits](dawidd6/action-send-mail@v4...v5) --- updated-dependencies: - dependency-name: dawidd6/action-send-mail dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Better handling of max retries * Add ConfigurationSpaceExhaustedException and update retry logic in ConfigSelector * Update changelog * Add test for exhausted configspace * fix when ConfigurationSpaceExhaustedException is raised
Bumps [dawidd6/action-send-mail](https://github.com/dawidd6/action-send-mail) from 5 to 6. - [Release notes](https://github.com/dawidd6/action-send-mail/releases) - [Commits](dawidd6/action-send-mail@v5...v6) --- updated-dependencies: - dependency-name: dawidd6/action-send-mail dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jannis Kastner <[email protected]>
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jannis Kastner <[email protected]>
* WIP * fit api and parallel predcting * remnove thread lock * implement for predict_marginalized_over_instances_batch * add facades for pyrfr * add pyrfr mf facade * maint class names * move rfr to optional requirements * mainti README * add tests for rf with log y * rf trained with n_jobs=-1 instead of None * make rf compatible with older version sklearn * maint mypy * update change log * add docstrings * fix black * maint * drop support for python 3.8 * maint * black fix * simplify pyrfr facade design * raise errors if pyrfr is not properly installed * maint rf * fix pre-commit --------- Co-authored-by: benjamc <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Improvements
target_function
becomes optional in Facade when using ask and tell exclusively ([Feature] Removetarget_function
as required when usingask
andtell
interface #946)Documentation
Examples
Bugfixes
Misc