REVIEW 4 major objections 4 minor 45 references
High-Dimensional Bayesian Optimization Using Both Random and Supervised Embeddings
T0 review · 4 major / 4 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read EGORSE claims that high-dimensional Bayesian optimization becomes tractable when the optimizer adaptively learns a low-dimensional linear subspace and replaces a costly quadratic feasibility test with a constraint function.
desk verdict A useful incremental HDBO method with one good trick, but the central 'outperforms by far' claim is not supported by the paper's own data. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the linear embedding subspace $\mathcal{A}^{(t)} = \{ \mathbf{u} = \mathbf{A}^{(t)} \mathbf{x} : \mathbf{x} \in \Omega \}$, where the transfer matrix $\mathbf{A}^{(t)} \in \mathbb{R}^{d_e \times d}$ is produced by one of several dimension-reduction methods. The reduced optimization runs over the smallest hypercube $\mathcal{B}^{(t)}$ containing $\mathcal{A}^{(t)}$. Two backward maps carry the argument: $\gamma_B$ maps $\mathcal{A}^{(t)}$ bijectively onto $\Omega$, and $\gamma_W$ projects every point of $\mathcal{B}^{(t)}$ onto $\Omega$, which lets the objective be defined on all of $\mathcal{B}^{(t)}$. The mechanism that saves computation is the constraint function $g^{(t)}(\mathbf{u}) \ge 0$, which takes the value $1 - \|\gamma_B(\mathbf{u})\|_2^2 / d$ inside the feasible embedded set and $-\|\mathbf{u}^{\mathbf{A}^{(t)}}\|_2^2$ outside it, turning the membership test into a cheap function evaluation instead of a quadratic program solved during acquisition.
What would settle it
Run EGORSE PLS+Gaussian with $d_e=2$ on a 600-variable problem with a known 60-dimensional active subspace and a known global minimum, as in the Rover_600 benchmark, and check whether the best found value approaches the known optimum; in the paper's own run the best value is about 2.4 against an optimum of $-5$, which would falsify any claim that EGORSE finds global optima in such cases.
Extended reading notes
Core claim
The paper's central claim is that a Bayesian optimizer can work reliably in a reduced linear subspace of dimension $d_e$ much smaller than $d$, provided the subspace is chosen by combining supervised and random dimension reduction and the reduced problem is formulated with a constraint rather than a feasibility oracle. The previous random-embedding approach required solving a quadratic program at every acquisition-function evaluation to decide whether a candidate point has a valid image in the original space; EGORSE removes that bottleneck by defining the objective and a constraint on the whole bounding hypercube, so a standard constrained Bayesian optimization subroutine can be used. At each outer iteration, transfer matrices are rebuilt from all previously evaluated points using partial least squares and a random Gaussian matrix, which is the adaptive part of the method. On the 100-variable benchmark the method is reported to converge fastest in CPU time, and on the 600-variable path-planning problem it reaches a lower objective value than the hash-embedding baseline in comparable time, although the best value it finds is far from the known global optimum.
Load-bearing premise
The objective function truly depends on a low-dimensional linear subspace of dimension $d_e$, and the user-chosen $d_e$ (two in all main experiments) captures enough of that variation for the optimum to lie in the searched subspace.
Editorial extensions
If this is right
- High-dimensional expensive black-box problems with hundreds of design variables can be optimized within a few thousand evaluations, with the expensive part of each iteration shifted from the acquisition sub-problem to a single quadratic solve per objective evaluation.
- The standard comparison methods TuRBO, EGO-KPLS, and RREMBO would be impractical in CPU time for problems beyond about one hundred variables, leaving EGORSE as the plausible choice in that regime.
- The recommended configuration is the PLS+Gaussian variant with an initial design of $d$ points, because the parametric study reports the best convergence speed and robustness for that setting.
- When the true number of effective directions is much larger than the user-specified $d_e$, EGORSE will produce a valid but not globally optimal answer; the Rover_600 experiment is the paper's own demonstration of this limitation.
- The same machinery is intended to extend to constrained black-box problems, which the authors identify as the necessary next step for realistic aerospace design.
Reading between the lines
- The constraint-function replacement is a general trick: any embedding method that provides a transfer matrix and a projection can be plugged into the same reduced formulation, so the CPU-time argument is not limited to PLS or Gaussian embeddings.
- The Rover_600 shortfall suggests a practical diagnostic: estimate the number of effective directions before choosing $d_e$ (for example by looking at the decay of the PLS variance), because a too-small $d_e$ can silently discard the subspace containing the optimum.
- If the speed gain really comes from removing quadratic solves from the acquisition loop, then the gap between EGORSE and HESBO should widen as the dimension $d$ and the acquisition budget grow; a controlled scaling study would isolate that mechanism.
- The claim of superiority rests on two benchmark families, both of which are linear embeddings of low-dimensional functions; testing on functions with genuinely high effective dimension or with nonlinear low-dimensional structure would show whether the method's advantage generalizes.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes EGORSE, a high-dimensional Bayesian optimization method that adaptively combines several low-dimensional linear embeddings, including supervised dimension-reduction techniques (PLS, MGP) and random embeddings, and replaces the quadratic-program feasibility test of RREMBO with a constraint function in the embedded space. The method is evaluated on modified Branin problems with 10 and 100 variables and a 600-variable Rover path-planning problem, against TuRBO, EGO-KPLS, RREMBO, and HESBO. The central claim, stated in Section VIII, is that EGORSE 'outperforms by far all the state-of-the-art HDBO solvers' in both CPU time and number of expensive function evaluations.
Significance. If supported, the main contribution is practically useful: the constraint-based formulation of Eq. (9) avoids solving a quadratic programming problem at every acquisition-function evaluation, and the adaptive combination of supervised and random embeddings is a sensible way to balance exploitation of discovered active directions with exploration. The paper is clearly structured, the algorithms are described in detail, and the experiments include external baseline methods and a problem with 600 variables. However, the evidence supports only a modest version of the claim. The paper's own results in Sections VI and VII undercut the 'outperforms by far' wording, and the fixed effective dimension d_e=2 is a load-bearing assumption that is violated by the non-toy benchmark.
major comments (4)
- [Section IV.A and Section VII.B] The method's core assumption is that the objective depends only on d_e effective directions, and d_e is set to 2 in all experiments. On Rover_600 the true effective dimension is 60, so no two-dimensional subspace can contain the active directions; Figure 9b shows the best value near 2.4 versus the known optimum -5, and Section VII.B explicitly concedes that 'EGORSE cannot provide better results.' The conclusion in Section VIII that EGORSE 'outperforms by far all the state-of-the-art HDBO solvers' is therefore unsupported for problems whose effective dimension exceeds d_e. The authors should either restrict the claim to the low-effective-dimension regime or provide experiments in which d_e is comparable to the problem's actual effective dimension.
- [Section VI.B, Figures 7a, 7c, and 9a] The reported data do not support the sweeping conclusion. On MB_10, EGO-KPLS and TuRBO converge faster and to lower objective values, both by number of evaluations and by CPU time. On MB_100, only the CPU-time comparison clearly favors EGORSE. On Rover_600, HESBO reaches its final value faster in CPU time. The defensible claims are narrower: EGORSE PLS+Gaussian is CPU-efficient on MB_100 and achieves a lower value than HESBO on Rover_600 in similar wall-clock time. The 'by far all state-of-the-art HDBO solvers' statement should be revised to match these data.
- [Section IV.E] The sentence 'The convergence properties, given by Binois et al., are thus preserved' is asserted without proof. The adaptive setting here differs from Binois et al. in two substantive ways: the embedding is re-estimated from all evaluated points at each outer iteration, and the optimization is performed under the constraint function (9) rather than with the modified EI used in RREMBO. No theorem is cited that covers this variant, and the adaptive resampling of the embedding is precisely the part that their analysis does not address. Either provide a proof or a precise reference for this setting, or remove the claim.
- [Section VI.A] The comparison protocol is not apples-to-apples for the CPU-time claims. TuRBO uses five trust regions and its own initial design, RREMBO and HESBO are run as 20 concatenated independent optimizations, and EGORSE and EGO-KPLS use a different initial design. The total budget per method, including initialization and hyperparameter fitting, should be reported on a common basis, and the CPU-time comparisons should state all wall-clock components. Without this, the claim that EGORSE is the fastest in CPU time is difficult to interpret.
minor comments (4)
- [Abstract and figures] There are several typos: 'high-dimensionnal' in the abstract, 'Hach' instead of 'Hash' in Figures 5 and 6, and 'EGO-KPSL' instead of 'EGO-KPLS' in the caption of Figure 9.
- [Eq. (9)] The text says the constraint function is 'normalized to provide values in [-1,1]', but the infeasible branch -||u_A||_2^2 is not normalized as written; please state the normalization step explicitly.
- [Section V.C.2] The phrase 'using 10 initial DoE' should be clarified as 'using 10 independent initial designs', since each optimization run uses one initial DoE.
- [Section VI.B] Calling TuRBO, EGO-KPLS, and RREMBO 'intractable in time' is too strong given that Figures 7c and 7d show them completing in several hours; 'substantially more expensive in wall-clock time' would be accurate.
Circularity Check
No significant circularity: EGORSE's central claims are empirical benchmark comparisons against external baselines, not consequences of fitted parameters or self-citations.
full rationale
The derivation chain in this paper is an algorithmic construction, not a self-referential reduction. The reduced problem (12), constraint (9), backward maps (7)/(10), and adaptive embeddings are all defined directly from the objective function and the chosen subspace; the algorithm never encodes the target optimum or the benchmark answer as an input. The central claim of outperforming state-of-the-art HDBO solvers is supported by experiments against external implementations (TuRBO, RREMBO, HESBO, EGO-KPLS), so the comparison is not a fitted parameter renamed as a prediction. The hyperparameters of EGORSE are selected in Section V on the same MB_10 and MB_100 functions used later for comparison, which is a benchmark-selection weakness rather than a circular derivation; moreover, the paper's own figures show TuRBO and EGO-KPLS converging faster on MB_10, so the conclusion is not forced by the tuning. The statement in Section IV.E that 'The convergence properties, given by Binois et al.[17], are thus preserved' cites external work and is asserted without proof for the modified algorithm; this is an omitted-proof or generality risk, not circularity, and Binois et al. are not the present authors. The explicit limitation in Section VII.B that d_e=2 cannot cover the 60 effective directions of Rover_600, and the concession that 'EGORSE cannot provide better results,' further show that the paper's claims are empirical and conditional rather than tautological. No load-bearing self-citation chain appears: self-citations to SEGOMOE, SMT, and related prior work are tooling and method references, not the justification for the claimed superiority. Overall, the derivation is self-contained and the empirical claims stand or fall on benchmark evidence, not on circular construction.
Assumptions & free parameters
free parameters (5)
- effective dimension d_e =
2 (user-selected; actual effective dimension is 60 in Rover_600)
- initial DoE size =
d points (chosen in sensitivity study)
- subspace evaluation budget max_nb_it_sub =
20*d_e
- total iteration budget max_nb_it =
10 or 20 iterations (800 evaluations per run)
- dimension reduction method combination =
PLS + Gaussian
assumptions (4)
- domain assumption The objective function f is assumed to depend only on a d_e-dimensional linear subspace: f(x)=f_A(Ax) with d_e << d.
- standard math The backward application gamma_B of Eq. (7) and the extended gamma_W of Eq. (10) provide valid maps between A(t) and Omega, and every minimum of f(t) over B(t) corresponds to a minimum of f over Omega; in particular 'one of the objective function minima is necessarily in A(t)'.
- domain assumption Including a random Gaussian embedding inside EGORSE preserves the convergence properties of RREMBO/Binois et al.
- domain assumption The CBO solver SEGO/SEGOMOE reliably solves the constrained acquisition sub-problem (12) at each iteration.
Cite this review
Pith. "Pith review of High-Dimensional Bayesian Optimization Using Both Random and Supervised Embeddings." pith.science (2026). https://pith.science/paper/R6NDN3NK
@misc{pith2026250200854,
author = {Pith},
title = {Pith review of: High-Dimensional Bayesian Optimization Using Both Random and Supervised Embeddings},
year = {2026},
howpublished = {\url{https://pith.science/paper/R6NDN3NK}},
note = {Machine review of arXiv:2502.00854}
}
read the original abstract
Bayesian optimization (BO) is one of the most powerful strategies to solve computationally expensive-to-evaluate blackbox optimization problems. However, BO methods are conventionally used for optimization problems of small dimension because of the curse of dimensionality. In this paper, a high-dimensionnal optimization method incorporating linear embedding subspaces of small dimension is proposed to efficiently perform the optimization. An adaptive learning strategy for these linear embeddings is carried out in conjunction with the optimization. The resulting BO method, named efficient global optimization coupled with random and supervised embedding (EGORSE), combines in an adaptive way both random and supervised linear embeddings. EGORSE has been compared to state-of-the-art algorithms and tested on academic examples with a number of design variables ranging from 10 to 600. The obtained results show the high potential of EGORSE to solve high-dimensional blackbox optimization problems, in terms of both CPU time and the limited number of calls to the expensive blackbox simulation.
Reference graph
Works this paper leans on
-
[1]
Problem Formulation for Multidisciplinary Optimization,
Cramer, E., Dennis, J. J., Frank, P., Lewis, R., and Shubin, G., “Problem Formulation for Multidisciplinary Optimization,” SIAM Journal on Optimization, Vol. 4, 1994, pp. 754–776. ¶https://github.com/SMTorg/smt 23
work page 1994
-
[2]
Multidisciplinary exploration of DRAGON: an ONERA hybrid electric distributed propulsion concept,
Schmollgruber, P., Atinault, O., Cafarelli, I., Döll, C., François, C., Hermetz, J., Liaboeuf, R., Paluch, B., and Ridel, M., “Multidisciplinary exploration of DRAGON: an ONERA hybrid electric distributed propulsion concept,”AIAA Scitech 2019 Forum, 2019, p. 1585
work page 2019
-
[3]
An Efficient Application of Bayesian Optimization to an Industrial MDO Framework for Aircraft Design
Priem, R., Gagnon, H., Chittick, I., Dufresne, S., Diouane, Y., and Bartoli, N., “An Efficient Application of Bayesian Optimization to an Industrial MDO Framework for Aircraft Design.”Proceedings of the AIAA AVIATION 2020 FORUM, VIRTUAL EVENT, 2020, p. 3152
work page 2020
-
[4]
Bartoli, N., Lefebvre, T., Dubreuil, S., Olivanti, R., Priem, R., Bons, N., Martins, J. R. R. A., and Morlier, J., “Adaptive Modeling Strategy for Constrained Global Optimization with Application to Aerodynamic Wing Design,”Aerospace Science and Technology, Vol. 90, 2019, pp. 85–102
work page 2019
-
[5]
Bouhlel, M. A., Bartoli, N., Regis, R. G., Otsmane, A., and Morlier, J., “Efficient Global Optimization for High-Dimensional ConstrainedProblemsbyUsingtheKrigingModelsCombinedwiththePartialLeastSquaresMethod,” EngineeringOptimization, 2018, pp. 1–16
work page 2018
-
[6]
High-dimensional mixed-categorical Gaussian processes with application to multidisciplinary design optimization for a green aircraft,
Saves, P., Diouane, Y., Bartoli, N., Lefebvre, T., and Morlier, J., “High-dimensional mixed-categorical Gaussian processes with application to multidisciplinary design optimization for a green aircraft,”Structural and Multidisciplinary Optimization, Vol. 67, 2024, p. 81
2024
-
[7]
Design of a commercial aircraft environment control system using Bayesian optimization techniques
Feliot, P., Guennec, Y. L., Bect, J., and Vazquez, E., “Design of a commercial aircraft environment control system using Bayesian optimization techniques,”arXiv:1610.02271, 2016
work page Pith review arXiv 2016
-
[8]
A Tutorial on Bayesian Optimization,
Frazier, P. I., “A Tutorial on Bayesian Optimization,”arXiv:1807.02811, 2018
arXiv 2018
Show all 45 references
-
[9]
Efficient Global Optimization of Expensive Black-Box Functions,
Jones, D. R., Schonlau, M., and Welch, W. J., “Efficient Global Optimization of Expensive Black-Box Functions,”Journal of Global optimization, Vol. 13, 1998, pp. 455–492
1998
-
[10]
On Bayesian Methods for Seeking the Extremum,
Močkus, J., “On Bayesian Methods for Seeking the Extremum,”Proceedings of the Optimization Techniques IFIP Technical Conference, 1975, pp. 400–404
1975
-
[11]
Taking the Human Out of the Loop: A Review of Bayesian Optimization,
Shahriari, B., Swersky, K., Wang, Z., Adams, R. P., and de Freitas, N., “Taking the Human Out of the Loop: A Review of Bayesian Optimization,”Proceedings of the IEEE, Vol. 104, 2016, pp. 148–175
2016
-
[12]
Bayesian Optimization with Unknown Constraints,
Gelbart, M. A., Snoek, J., and Adams, R. P., “Bayesian Optimization with Unknown Constraints,”Proceedings of the 30th Conference on Uncertainty in Artificial Intelligence, UAI 2014, 2014, pp. 250–259
2014
-
[13]
TREGO: a trust-region framework for efficient global optimization,
Diouane, Y., Picheny, V., Riche, R. L., and Perrotolo, A. S. D., “TREGO: a trust-region framework for efficient global optimization,”Journal of Global Optimization, Vol. 86, 2023, pp. 1–23
2023
-
[14]
Scalable Global Optimization via Local Bayesian Optimization,
Eriksson, D., Pearce, M., Gardner, J., Turner, R. D., and Poloczek, M., “Scalable Global Optimization via Local Bayesian Optimization,”Advances in Neural Information Processing Systems, 2019, pp. 5497–5508. 24
2019
-
[15]
Bayesian Optimization in a Billion Dimensions via Random Embeddings,
Wang, Z., Hutter, F., Zoghi, M., Matheson, D., and de Feitas, N., “Bayesian Optimization in a Billion Dimensions via Random Embeddings,”Journal of Artificial Intelligence Research, Vol. 55, 2016, pp. 361–387
2016
-
[16]
Batched High-Dimensional Bayesian Optimization via Structural Kernel Learning,
Wang, Z., Li, C., Jegelka, S., and Kohli, P., “Batched High-Dimensional Bayesian Optimization via Structural Kernel Learning,” Proceedings of the 21st International Conference on Artificial Intelligence and Statistics, Vol. 84, 2018, pp. 745–754
2018
-
[17]
On the Choice of the Low-Dimensional Domain for Global Optimization via Random Embeddings,
Binois, M., Ginsbourger, D., and Roustant, O., “On the Choice of the Low-Dimensional Domain for Global Optimization via Random Embeddings,”Journal of global optimization, Vol. 76, 2020, pp. 69–90
2020
-
[18]
High Dimensional Bayesian Optimisation and Bandits via Additive Models,
Kandasamy, K., Schneider, J., and Póczos, B., “High Dimensional Bayesian Optimisation and Bandits via Additive Models,” Proceedings of the 32nd International Conference on Machine Learning, Vol. 37, 2015, pp. 295–304
2015
-
[19]
Scalable Constrained Bayesian Optimization,
Eriksson, D., and Poloczek, M., “Scalable Constrained Bayesian Optimization,”arXiv:2002.08526, 2020
2002 arXiv
-
[20]
E., and Williams, C
Rasmussen, C. E., and Williams, C. K. I.,Gaussian Processes for Machine Learning, MIT Press, 2006
2006
-
[21]
A Statistical Approach to Some Basic Mine Valuation Problems on the Witwatersrand,
Krige, D. G., “A Statistical Approach to Some Basic Mine Valuation Problems on the Witwatersrand,”Journal of the Southern African Institute of Mining and Metallurgy, Vol. 52, 1951, pp. 119–139
1951
-
[22]
Max-Value Entropy Search for Efficient Bayesian Optimization,
Wang, Z., and Jegelka, S., “Max-Value Entropy Search for Efficient Bayesian Optimization,”Proceedings of the 34th International Conference on Machine Learning, Vol. 70, 2017, pp. 3627–3635
2017
-
[23]
aphBO-2GP-3B: A Budgeted Asynchronously-Parallel Multi-Acquisition for Known/Unknown Constrained Bayesian Optimization on High-Performing Computing Architecture,
Tran, A., McCann, S., Furlan, J. M., Pagalthivarthi, K. V., Visintainer, R. J., and Wildey, T., “aphBO-2GP-3B: A Budgeted Asynchronously-Parallel Multi-Acquisition for Known/Unknown Constrained Bayesian Optimization on High-Performing Computing Architecture,”arXiv:2003.09436, 2020
2003 arXiv
-
[24]
StructureDiscoveryinNonparametricRegressionthrough Compositional Kernel Search,
Duvenaud,D.,Lloyd,J.,Grosse,R.,Tenenbaum,J.,andZoubin,G.,“StructureDiscoveryinNonparametricRegressionthrough Compositional Kernel Search,”Proceedings of the 28th International Conference on Machine Learning, 2013, pp. 1166–1174
2013
-
[25]
Bayesian Data Analysis (Vol. 2),
Gelman, A., Carlin, J. B., Stern, H. S., and Rubin, D. B., “Bayesian Data Analysis (Vol. 2),”Boca Raton, FL: Chapman, 2014
2014
-
[26]
Optimisation bayésienne sous contraintes et en grande dimension appliquée à la conception avion avant projet,
Priem, R., “Optimisation bayésienne sous contraintes et en grande dimension appliquée à la conception avion avant projet,” PhD Thesis, Université de Toulouse, Toulouse, 2020
2020
-
[27]
OntheStructureofPartialLeastSquaresRegression,
Helland,I.S.,“OntheStructureofPartialLeastSquaresRegression,” Communicationsinstatistics-SimulationandComputation , Vol. 17, 1988, pp. 581–607
1988
-
[28]
Upper Trust Bound Feasibility Criterion for Mixed Constrained Bayesian Optimization with Application to Aircraft Design,
Priem, R., Bartoli, N., Diouane, Y., and Sgueglia, A., “Upper Trust Bound Feasibility Criterion for Mixed Constrained Bayesian Optimization with Application to Aircraft Design,”Aerospace Science and Technology, Vol. 105, 2020, p. 105980
2020
-
[29]
A Framework for Bayesian Optimization in Embedded Subspaces,
Nayebi, A., Munteanu, A., and Poloczek, M., “A Framework for Bayesian Optimization in Embedded Subspaces,”Proceedings of the 36th International Conference on Machine Learning, 2019, pp. 4752–4761
2019
-
[30]
Active Learning of Linear Embeddings for Gaussian Processes,
Garnett, R., Osborne, M., and Hennig, P., “Active Learning of Linear Embeddings for Gaussian Processes,”Proceedings of the 30th Conference on Uncertainty in Artificial Intelligence (UAI 2014), 2014, p. 10. 25
2014
-
[31]
Extensions to the Design Structure Matrix for the Description of Multidisciplinary Design, Analysis, and Optimization Processes,
Lambe, A. B., and Martins, J. R. R. A., “Extensions to the Design Structure Matrix for the Description of Multidisciplinary Design, Analysis, and Optimization Processes,”Structural and Multidisciplinary Optimization, Vol. 46, 2012, pp. 273–284
2012
-
[32]
A Python Surrogate Modeling Framework with Derivatives,
Bouhlel, M. A., Hwang, J. T., Bartoli, N., Lafage, R., Morlier, J., and Martins, J. R. R. A., “A Python Surrogate Modeling Framework with Derivatives,”Advances in Engineering Software, Vol. 135, 2019, p. 102662
2019
-
[33]
SMT 2.0: A Surrogate Modeling Toolbox with a focus on Hierarchical and Mixed Variables Gaussian Processes,
Saves, P., Lafage, R., Bartoli, N., Diouane, Y., Bussemaker, J. H., Lefebvre, T., Hwang, J. T., Morlier, J., and Martins, J., “SMT 2.0: A Surrogate Modeling Toolbox with a focus on Hierarchical and Mixed Variables Gaussian Processes,”Advances in Engineering Software, Vol. 188,...
2024
-
[34]
Exploration of Metamodeling Sampling Criteria for Constrained Global Optimization,
Sasena, M. J., Papalambros, P., and Goovaerts, P., “Exploration of Metamodeling Sampling Criteria for Constrained Global Optimization,”Engineering optimization, Vol. 34, 2002, pp. 263–278
2002
-
[35]
Search biases in constrained evolutionary optimization,
Runarsson, T. P., and Yao, X., “Search biases in constrained evolutionary optimization,”IEEE Transactions on Systems, Man, and Cybernetics, Part C (Applications and Reviews), Vol. 35, 2005, pp. 233–243
2005
-
[36]
The NLopt nonlinear-optimization package,
Johnson, S. G., “The NLopt nonlinear-optimization package,” Software available athttps://nlopt.readthedocs.io, 2014
2014
-
[37]
SNOPT: An SQP algorithm for large-scale constrained optimization,
Gill, P. E., Murray, W., and Saunders, M. A., “SNOPT: An SQP algorithm for large-scale constrained optimization,”SIAM review, Vol. 47, 2005, pp. 99–131
2005
-
[38]
pyOpt: aPython-basedobject-orientedframeworkfornonlinearconstrained optimization,
Perez,R.E.,Jansen,P.W.,andMartins,J.R.R.A.,“pyOpt: aPython-basedobject-orientedframeworkfornonlinearconstrained optimization,”Structural and Multidisciplinary Optimization, Vol. 45, 2012, pp. 101–118
2012
-
[39]
CVXOPT: Python software for convex optimization,
Andersen, M. S., Dahl, J., and Vandenberghe, L., “CVXOPT: Python software for convex optimization,” , 2013. URL https://cvxopt.org/
2013
-
[40]
Discovering and Exploiting Additive Structure for Bayesian Optimization,
Gardner, J., Guo, C., Weinberger, K., Garnett, R., and Grosse, R., “Discovering and Exploiting Additive Structure for Bayesian Optimization,”Proceedings of the 20th International Conference on Artificial Intelligence and Statistics, 2017, pp. 1311–1319
2017
-
[41]
Scikit-learn: Machine Learning in Python,
Pedregosa, F., Varoquaux, G., Gramfort, A., Michel, V., Thirion, B., Grisel, O., Blondel, M., Prettenhofer, P., Weiss, R., Dubourg, V., Vanderplas, J., Passos, A., Cournapeau, D., Brucher, M., Perrot, M., and Duchesnay, E., “Scikit-learn: Machine Learning in Python,”Journal of...
2011
-
[42]
Infill Sampling Criteria for Surrogate-Based Optimization with Constraint Handling,
Parr, J. M., Keane, A. J., Forrester, A. I. J., and Holden, C. M. E., “Infill Sampling Criteria for Surrogate-Based Optimization with Constraint Handling,”Engineering Optimization, Vol. 44, 2012, pp. 1147–1166
2012
-
[43]
High dimensional Bayesian optimization assisted by principal component analysis,
Raponi, E., Wang, H., Bujny, M., Boria, S., and Doerr, C., “High dimensional Bayesian optimization assisted by principal component analysis,”Parallel Problem Solving from Nature–PPSN XVI: 16th International Conference, PPSN 2020, Leiden, The Netherlands, September 5-9, 2020, P...
2020
-
[44]
Twofold Adaptive Design Space Reduction for Constrained Bayesian Optimization of Transonic Compressor,
Pretsch, L., Arsenyev, I., Raponi, E., and Duddeck, F., “Twofold Adaptive Design Space Reduction for Constrained Bayesian Optimization of Transonic Compressor,” Submitted to the ASME Turbo Expo 2024, 2024. 26
2024
-
[45]
Bayesian optimization for mixed variables using an adaptive dimension reduction process: applications to aircraft design,
Saves, P., Nguyen Van, E., Bartoli, N., Diouane, Y., Lefebvre, T., David, C., Defoort, S., and Morlier, J., “Bayesian optimization for mixed variables using an adaptive dimension reduction process: applications to aircraft design,”AIAA SciTech 2022, 2022, p. 0082. 27
2022
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.