pith. sign in

arxiv: 2601.03166 · v2 · submitted 2026-01-06 · 💻 cs.LG

Dynamic Hyperparameter Importance for Efficient Multi-Objective Optimization

Pith reviewed 2026-05-16 17:15 UTC · model grok-4.3

classification 💻 cs.LG
keywords hyperparameter optimizationmulti-objective optimizationhyperparameter importanceHyperSHAPParEGOPareto optimizationBayesian optimization
0
0 comments X

The pith

Dynamically fixing hyperparameters judged unimportant by HyperSHAP during multi-objective search improves final Pareto front quality by up to 24 percent.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper shows that standard multi-objective optimizers waste effort on all hyperparameters equally even though their influence on the competing objectives changes during the search. By extracting importance scores from HyperSHAP at each step and using the objective weights already produced by ParEGO to decide which parameters to freeze, the method shrinks the active configuration space on the fly. Experiments on hyperparameter tuning benchmarks and synthetic functions demonstrate that this focused search reaches better trade-off surfaces faster than the unmodified baseline. The gain matters because tuning models under multiple objectives such as accuracy, fairness, and energy cost remains computationally heavy; any reliable reduction in wasted evaluations makes practical deployment more feasible.

Core claim

The central claim is that integrating hyperparameter importance dynamically into the ParEGO loop by fixing low-importance dimensions at each iteration reduces the search space without sacrificing solution quality, yielding up to 24 percent better final Pareto fronts on hyperparameter optimization tasks and twice as good results on synthetic test functions.

What carries the argument

The mechanism that shrinks the search space at each iteration by combining HyperSHAP importance rankings with ParEGO's current objective weight vector to select and fix unimportant hyperparameters.

If this is right

  • The method reaches higher-quality Pareto fronts with the same number of evaluations on real hyperparameter tuning problems.
  • On synthetic multi-objective functions the approach converges to twice the quality of the baseline.
  • Fixing dimensions reduces the effective dimensionality the optimizer must explore at later stages.
  • The same importance signal can be reused across different objective weightings without retraining the underlying surrogate.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same dynamic-freezing logic could be grafted onto other scalarization-based multi-objective algorithms that already maintain per-objective models.
  • If importance estimates prove stable across nearby weight vectors, the overhead of repeated HyperSHAP calls could be amortized by computing them less frequently.
  • Extending the approach to mixed continuous-categorical spaces would require only a change in how the importance threshold is applied to each variable type.

Load-bearing premise

That a hyperparameter labeled unimportant by HyperSHAP at one iteration will not become critical for reaching a better overall trade-off later in the search.

What would settle it

A head-to-head run on one of the YAHPO-Gym or PyMOO tasks in which the dynamic-fixing version produces a strictly worse final Pareto front than unmodified ParEGO after the same evaluation budget.

read the original abstract

Choosing a suitable ML model is a complex task that can depend on several objectives, e.g., accuracy, fairness, or energy consumption. In practice, this requires trading off multiple, often competing, objectives through multi-objective optimization (MOO). However, existing MOO methods typically treat all hyperparameters as equally important, disregarding that hyperparameter importance (HPI) can vary significantly across objectives. We propose a novel dynamic optimization approach that prioritizes the most influential hyperparameters based on varying objective trade-offs during the search, thereby accelerating empirical convergence. We advance prior work on HPI for MOO from post-analysis to direct, dynamic integration within the optimization, using the recent HPI method HyperSHAP. For this, we leverage the objective weightings naturally produced by the MOO algorithm ParEGO and reduce the configuration space by fixing the unimportant hyperparameters, allowing the search to focus on the important ones. Eventually, we evaluate our method on diverse tasks from PyMOO and YAHPO-Gym. For HPO, integrating HPI yields up to 24% improvement in final Pareto front quality, while on synthetic data, integrating HPI achieves 2x better final results.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

2 major / 2 minor

Summary. The paper proposes dynamically integrating hyperparameter importance (HPI) estimation via HyperSHAP into ParEGO-based multi-objective optimization. It uses the scalarization weights produced by ParEGO at each iteration to compute importance, then fixes low-importance hyperparameters for the remainder of the run, thereby shrinking the search space. The central claim is that this yields up to 24% improvement in final Pareto-front quality on hyperparameter optimization tasks and 2x better final results on synthetic benchmarks drawn from PyMOO and YAHPO-Gym.

Significance. If the empirical gains prove robust, the work would meaningfully advance the field by moving HPI from post-hoc analysis to an active, online component of MOO. The reuse of ParEGO weights for importance scoring is a clean integration point that avoids introducing new hyperparameters, and the reported speed-ups on standard libraries would be of practical interest to practitioners tuning models under competing objectives such as accuracy, fairness, and energy.

major comments (2)
  1. [Method] Method section (dynamic fixing procedure): the irreversible fixing of hyperparameters based on HyperSHAP estimates computed from the current (small) observation set carries a non-recoverable risk. An early mis-ranking can permanently exclude a dimension whose effect only becomes visible under a later weight vector or after additional data arrive; the manuscript provides no unfreezing or re-evaluation mechanism, which directly undermines the reliability of the claimed Pareto-front improvements.
  2. [Evaluation] Evaluation section: the abstract reports concrete percentage and factor improvements (24% and 2x) yet supplies no information on the number of independent runs, variance across seeds, statistical significance tests, or the exact importance threshold used to decide fixation. These omissions are load-bearing for assessing whether the observed gains are stable or merely artifacts of particular random seeds or threshold choices.
minor comments (2)
  1. [Method] Clarify in the method description how the importance threshold is chosen at each iteration and whether it is fixed or adapted; the current description leaves this choice opaque.
  2. [Experiments] Add a short table or paragraph in the experimental setup listing the exact number of objectives, the range of hyperparameter dimensions, and the precise baselines (e.g., vanilla ParEGO) used for each benchmark.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for the detailed and constructive feedback on our manuscript. We address each major comment below and indicate the planned revisions.

read point-by-point responses
  1. Referee: [Method] Method section (dynamic fixing procedure): the irreversible fixing of hyperparameters based on HyperSHAP estimates computed from the current (small) observation set carries a non-recoverable risk. An early mis-ranking can permanently exclude a dimension whose effect only becomes visible under a later weight vector or after additional data arrive; the manuscript provides no unfreezing or re-evaluation mechanism, which directly undermines the reliability of the claimed Pareto-front improvements.

    Authors: We thank the referee for highlighting this important limitation of our dynamic fixing procedure. While the iterative nature of our method, which recomputes HyperSHAP values at each step using updated observations and varying ParEGO weights, provides some robustness against early errors, we acknowledge that the fixing is irreversible and no unfreezing mechanism is currently implemented. To strengthen the manuscript, we will revise the method section to include a more detailed discussion of this risk, supported by additional experiments showing the impact of fixation timing on performance. We will also report results with different thresholds to demonstrate stability. revision: partial

  2. Referee: [Evaluation] Evaluation section: the abstract reports concrete percentage and factor improvements (24% and 2x) yet supplies no information on the number of independent runs, variance across seeds, statistical significance tests, or the exact importance threshold used to decide fixation. These omissions are load-bearing for assessing whether the observed gains are stable or merely artifacts of particular random seeds or threshold choices.

    Authors: We agree with the referee that the current manuscript lacks these crucial details. In the revised version, we will specify that all experiments were repeated over 10 independent runs with different seeds, reporting mean and standard deviation of the hypervolume. We will include results of paired t-tests for statistical significance (p<0.05). The threshold for fixing was set to 0.1, chosen based on preliminary experiments. These additions will be made to the abstract and evaluation sections. revision: yes

Circularity Check

0 steps flagged

Low circularity: reuses ParEGO weights and external HyperSHAP without self-referential reduction

full rationale

No equations or derivations in the paper reduce the reported Pareto improvements (24% or 2x) to quantities already fitted inside the same run. The approach dynamically fixes hyperparameters using importance scores from HyperSHAP driven by ParEGO scalarization weights, then evaluates empirically on PyMOO and YAHPO-Gym benchmarks. This re-uses existing external estimators rather than creating a closed loop where predictions equal fitted inputs by construction. Any self-citation to prior HPI work is not load-bearing for the central empirical claim.

Axiom & Free-Parameter Ledger

0 free parameters · 1 axioms · 0 invented entities

The approach rests on the standard assumption that HyperSHAP produces reliable per-objective importance rankings during optimization and that ParEGO scalarization weights are a sufficient proxy for the current objective trade-off. No new entities are postulated and no free parameters beyond those already present in the base algorithms are introduced in the abstract.

axioms (1)
  • domain assumption HyperSHAP importance estimates remain stable and informative when computed on the partial evaluations produced by ParEGO
    Invoked when the method decides which hyperparameters to fix at each iteration.

pith-pipeline@v0.9.0 · 5506 in / 1267 out tokens · 60419 ms · 2026-05-16T17:15:12.084773+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.