Add user-tunable objective_weights and Dirichlet sampling to ParEGO#1305
Open
JannisKst wants to merge 3 commits intodevelopmentfrom
Open
Add user-tunable objective_weights and Dirichlet sampling to ParEGO#1305JannisKst wants to merge 3 commits intodevelopmentfrom
JannisKst wants to merge 3 commits intodevelopmentfrom
Conversation
…or guided multi-objective search
|
Hey, I'm happy you guys are working on this feature I was asking for a year ago in #1235. Will you make a release containing this feature? |
added 2 commits
April 7, 2026 11:32
- Moved the `objective_weights` parameter from multi-objective algorithms (MeanAggregationStrategy, ParEGO) to the Scenario. - Updated MeanAggregationStrategy and ParEGO to read weights from the scenario. - Refactored tests and Facades to accommodate the new location of objective_weights.
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
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.
This PR introduces an objective_weights parameter to ParEGO, allowing users to bias the multi-objective search toward preferred regions of the Pareto front. Weights are validated, normalized, and used to sample scalarization weights via a Dirichlet distribution, controlled by concentration_scale.
If no weights are provided, ParEGO defaults to uniform random scalarization.
Possible consideration:
The handling of objective_weights is currently implemented within ParEGO and MeanAggregationStrategy. It may be beneficial to centralize this logic, either in the Scenario or in AbstractMultiObjectiveAlgorithm to reduce duplication and ensure consistent behavior across strategies.