REVIEW 3 major objections 5 minor 58 references
High-Dimensional Bayesian Optimization via Random Projection of Manifold Subspaces
T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read High-dimensional Bayesian optimization can be reduced to a low-dimensional search plus a manifold back-projection.
desk verdict Promising BO recipe undermined by a false proof of its central theorem; the empirics are worth a serious revision. 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 central objects are the random orthogonal matrix $A \in \mathbb{R}^{m \times D}$ and the manifold projection $P_M$, approximated by a learned mapping $h$. The identity $M_{\mathcal{A}} = \{A P_M(A^T q)\}$ is the mechanism that turns the intractable acquisition optimization over the projected manifold into an unconstrained box search in $\mathbb{R}^m$ followed by the explicit back-projection $h(A^T z)$. The semi-supervised consistency loss $L_{us} = \frac{1}{pq}\sum_{j,i} \|h(\lambda_j x'_i + (1-\lambda_j)h(x'_i)) - h(x'_i)\|^2$ enforces that $h$ behaves like an orthogonal projection, which is the property used for the back-projection to land on $M$.
What would settle it
Take the mixed manifold $T^{2d_1} \times \mathbb{R}^{d_2}$ with $d_1=5$, $d_2=10$ in $\mathbb{R}^{500}$, set $m=15$, draw $A$ randomly, and sample points $x \in M$; check numerically whether for each $A x$ there is a $q$ with $A x = A P_M(A^T q)$ within box bounds. If any sampled point has no such $q$, the equality $M_{\mathcal{A}} = M_{\mathcal{A}}'$ fails and the low-dimensional acquisition provably covers only a subset of the projected manifold.
Extended reading notes
Core claim
Theorem 1 and Theorem 2 establish that, with probability 1, for a $d$-dimensional manifold $M$ embedded in $\mathbb{R}^D$ that can be embedded in $\mathbb{R}^m$, the set $M_{\mathcal{A}} = \{A x : x \in M\}$ equals $\{A P_M(A^T q) : q \in \mathbb{R}^m\}$. Therefore, instead of solving the acquisition maximization over the complicated domain $M_{\mathcal{A}}$, one can maximize $EI(A h(A^T q))$ over a box and set the next query to $x_{n+1} = h(A^T z_{n+1})$. The paper also shows that the low-dimensional Gaussian process regressor converges at the optimal posterior contraction rate $n^{-s/(2s+d)}$ and that the random projection compresses noise of near-manifold points.
Load-bearing premise
The proof relies on the premise that a manifold that can be folded into $m$ dimensions always lies entirely inside some $m$-dimensional flat plane of the original space; embeddability does not guarantee this.
Editorial extensions
If this is right
- Acquisition optimization runs in $\mathbb{R}^m$ with $m \ll D$, so the per-iteration cost no longer scales with the ambient dimension.
- The explicit back-projection $h(A^T z)$ replaces the decoder-network reconstruction used by VAE-based Bayesian optimization approaches, simplifying the pipeline.
- When the manifold geometry is known (sphere, linear subspace), a closed-form $h$ gives lower test loss and needs no unlabeled data.
- Training $h$ with the semi-supervised consistency loss reduces overfitting when few labeled points are available (10–100 labels).
- On synthetic Ackley, Rotated Hyper-Ellipsoid, and Levy functions with latent dimensions 10–15, the method reaches lower function values than the eight baselines for $D \in \{500, 1000, 1500\}$.
Reading between the lines
- Extension: The equality $M_{\mathcal{A}} = \{A P_M(A^T q)\}$ should be tested numerically on manifolds whose affine span exceeds $m$; the paper's own mixed manifold ($2d_1+d_2=20$, $m=15$) is a direct test case.
- Extension: If coverage fails for such manifolds, a practical remedy is to increase $m$ to the affine span dimension or to add a second random projection restricted to the orthogonal complement.
- Extension: The consistency loss could be strengthened with an explicit idempotence penalty $\|h(h(x))-h(x)\|^2$, which would make the learned $h$ closer to a true projection and tighten the approximation $h \approx P_M$.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes RPM-BO, a high-dimensional Bayesian optimization algorithm for objective functions whose effective dependence lies on a low-dimensional manifold. The method combines a random orthogonal projection A from R^D to R^m with a learned feature map h (analytic when the manifold geometry is known, otherwise a neural network trained with a semi-supervised consistency loss). A Gaussian process surrogate is constructed on the projected points Ah(x), and the acquisition function is optimized in R^m with a back-projection step h(A^T z). The authors claim theoretical support via Theorems 1 and 2, which are supposed to show that optimizing EI in the projected space is equivalent to optimizing over the projected manifold, and they report empirical improvements over several baselines on synthetic and real benchmarks.
Significance. If the theoretical claims were correct, the back-projection scheme would be a valuable contribution because it avoids expensive decoder training and provides a simple way to map low-dimensional acquisition candidates back to the original space. The empirical study is broad, covering multiple synthetic manifolds and real applications with dimensions up to 1500, and the authors make their code available. The semi-supervised consistency loss is a reasonable practical idea for regularizing the feature map with unlabeled data. However, the central theoretical result, Theorem 1, has an invalid proof and appears false in the general setting claimed; since Theorem 2 and the acquisition optimization in Algorithm 1 rely directly on Theorem 1, the advertised theoretical support is not established.
major comments (3)
- [Appendix A, proof of Theorem 1] The proof contains a non-sequitur: from "M can be embedded in Euclidean space R^m" it concludes "therefore, there exists an m-dimensional affine space L ⊂ R^D such that M ⊂ L." Embeddability is an intrinsic property and does not imply containment in an affine subspace of the ambient space; for instance, a 1-dimensional helix in R^3 can be embedded in R^2 but is not contained in any 2-dimensional affine subspace. This invalidates the proof of Theorem 1. Consequently, Theorem 2, which relies on Theorem 1, is also not proven, and the equality M_A = \bar{M}_A that justifies optimizing EI(Ah(A^T z)) over z ∈ [-√m, √m]^m in Algorithm 1 (lines 9-10) is not established. Moreover, the paper's own mixed-manifold experiments (Section 4.1, Eq. (12), with d1=5, d2=10) have affine span 2d1+d2=20 in R^D, while the experiments set m=15; thus the proof's required affine-subspace condition is not satisfied in the main nonlinear experiments.
- [Appendix B.3] The claimed convergence rate O(n^{-1/m}) for RPM-BO is asserted rather than derived. The text states that "if we assume that the feature mapping h is also accurately learned, then the convergence rate of our proposed BO algorithm is equivalent to the convergence rate of a BO algorithm in low dimension m," and that the proof can be done similarly to [51]. This is not a proof, and the setting here differs from [51] in essential ways: h is learned from data, the acquisition optimization is performed in R^m and then back-projected, and the surrogate is built on projected points Ah(x). No analysis is given for the effect of approximation error in h, the mismatch between h(A^T z) and A P_M(A^T z), or the finite-sample behavior of the learned lengthscale parameter a. The claim that the algorithm "achieves the optimal posterior contraction rate" is therefore unsupported.
- [Section 3.3, Eq. (11)] The derivation of the acquisition optimization relies on the assumption that "h approximates P_M" and uses the approximation symbol to replace P_M by h. The paper does not provide a quantitative statement of this approximation, nor does it show that the consistency loss in Eq. (7) drives h toward P_M in any controlled way. In fact, Proposition 1 characterizes P_M, but the loss only encourages h to be invariant on line segments between x' and h(x'); it does not enforce that h(x) lies on M or that h equals the orthogonal projection. This leaves a gap between the theory and the actual algorithm, and the experiments do not verify that h is close to P_M for the neural-network cases (e.g., the mixed-manifold and MuJoCo experiments).
minor comments (5)
- [Eq. (5)] The spherical projection formula is undefined when the denominator ||B(B^T x - c)||_2 is zero; the paper does not discuss this edge case or how it is handled in the implementation.
- [Algorithm 1, line 10] The back-projection step is written as x_{n+1} = h(A^T z_{n+1}), which is consistent with using h as a replacement for P_M, but the relationship to Theorem 2's exact expression A P_M(A^T q) should be stated explicitly to avoid confusion.
- [Section 3.4] The discussion of the choice of m says that if m ≥ 2d then every d-dimensional manifold can be embedded in R^m (Whitney), while the random projection condition in Eq. (9) suggests m = O(d log D). The relationship between these two requirements is not clarified; the experiments set m = 15 for d = 15, which does not satisfy m ≥ 2d.
- [Appendix D.4] The sentence "We will show that training with semi-supervised loss function in Equation (8) can reduce the overfitting issue in Appendix D.4" is worded as a claim of a proof, but Appendix D.4 presents only a toy empirical illustration. The wording should be softened to "provide empirical evidence".
- [References] The reference [48] appears in the text as "Tran-The, H., Gupta, S., Rana, S., Venkatesh, S.: Regret bounds for expected improvement algorithms in Gaussian process bandit optimization." This is an odd citation for the noise-affected convergence rate; the authors should verify the precise statement and ensure the cited result supports the claim.
Circularity Check
No circularity: RPM-BO's back-projection theorem, consistency loss, and convergence claims rest on external geometric/statistical results and the paper's own conditional derivations; the Appendix A proof gap is a correctness concern, not input-output circularity.
full rationale
The derivation chain contains no step in which a predicted quantity is equal by construction to a fitted input, and no load-bearing premise is justified only by a self-citation. Theorem 2 is a set-theoretic consequence of Theorem 1, and Theorem 1 is attempted in Appendix A using Lemma 1 and an affine-space argument. Even if that proof is mathematically invalid because embeddability in R^m does not imply containment in an m-dimensional affine subspace, the invalidity is a correctness or theoretical-support gap, not circularity: the theorem's conclusion is not assumed in its premises. The consistency loss in Eq. (7) is justified by Proposition 1 from Leobacher and Steinicke [27], an external geometric result, and the semi-supervised training is then evaluated against held-out loss in Appendix D.4 rather than being used as its own evidence. The convergence rates in Appendix B quote Yang and Dunson [54] and Guhaniyogi and Dunson [17], and the noisy-case EI rate quotes Tran-The et al. [48], which is a self-citation; however, it is invoked as a ready-made external regret bound, not as an input to the present model fit, so it does not make the argument circular. The empirical comparisons are against external baselines and do not claim to predict a fitted value. The proof gap in Appendix A should be flagged as a correctness risk because the stated support for Theorem 1 does not cover the paper's own mixed-manifold experiments where the affine span is 20 while m = 15, but this does not rise to circularity under the definitions used here.
Assumptions & free parameters
free parameters (5)
- m (projection dimension) =
10, 15, 20 in experiments (D.2)
- gamma (consistency loss weight) =
1
- p, q (consistency loss sizes) =
p=5, q=100
- a0, b0 (gamma prior on lengthscale) =
a0=1, b0=0.15
- NN architecture =
single hidden layer, 35 units, ReLU
assumptions (6)
- domain assumption The objective function has an effective low-dimensional manifold M embedded in R^D.
- domain assumption The orthogonal projection P_M exists and is unique on the search space X.
- ad hoc to paper If M can be embedded in R^m, then M is contained in an m-dimensional affine subspace L of R^D.
- domain assumption A random projection A with m = O(d log(D)) preserves pairwise distances on the manifold and is a diffeomorphism onto its image.
- domain assumption The Yang-Dunson posterior contraction theorem applies to the low-dimensional GP on projected data.
- standard math Proposition 1: the orthogonal projection of any point on the segment between x and its projection x_M is x_M.
Cite this review
Pith. "Pith review of High-Dimensional Bayesian Optimization via Random Projection of Manifold Subspaces." pith.science (2026). https://pith.science/paper/JJ3HEK7J
@misc{pith2026241216554,
author = {Pith},
title = {Pith review of: High-Dimensional Bayesian Optimization via Random Projection of Manifold Subspaces},
year = {2026},
howpublished = {\url{https://pith.science/paper/JJ3HEK7J}},
note = {Machine review of arXiv:2412.16554}
}
read the original abstract
Bayesian Optimization (BO) is a popular approach to optimizing expensive-to-evaluate black-box functions. Despite the success of BO, its performance may decrease exponentially as the dimensionality increases. A common framework to tackle this problem is to assume that the objective function depends on a limited set of features that lie on a low-dimensional manifold embedded in the high-dimensional ambient space. The latent space can be linear or more generally nonlinear. To learn feature mapping, existing works usually use an encode-decoder framework which is either computationally expensive or susceptible to overfittting when the labeled data is limited. This paper proposes a new approach for BO in high dimensions by exploiting a new representation of the objective function. Our approach combines a random linear projection to reduce the dimensionality, with a representation learning of the nonlinear manifold. When the geometry of the latent manifold is available, a solution to exploit this geometry is proposed for representation learning. In contrast, we use a neural network. To mitigate overfitting by using the neural network, we train the feature mapping in a geometry-aware semi-supervised manner. Our approach enables efficient optimizing of BO's acquisition function in the low-dimensional space, with the advantage of projecting back to the original high-dimensional space compared to existing works in the same setting. Finally, we show empirically that our algorithm outperforms other high-dimensional BO baselines in various synthetic functions and real applications.
Figures
Figures from the paper (7 more)
Reference graph
Works this paper leans on
-
[51]
Wang, Z., Zoghi, M., Hutter, F., Matheson, D., de Freitas, N.: Bayesian opti- mization in a billion dimensions via random embeddings. J. Artif. Intell. Res.55, 361–387 (2016)
work page 2016
-
[1]
In: Advances in Neural Information Processing Systems 33 (2020)
Balandat, M., Karrer, B., Jiang, D.R., Daulton, S., Letham, B., Wilson, A.G., Bak- shy, E.: BoTorch: A Framework for Efficient Monte-Carlo Bayesian Optimization. In: Advances in Neural Information Processing Systems 33 (2020)
work page 2020
-
[2]
Foundations of Computational Mathematics9, 51–77 (2009)
Baraniuk, R., Wakin, M.B.: Random projections of smooth manifolds. Foundations of Computational Mathematics9, 51–77 (2009)
work page 2009
-
[3]
Journal of Machine Learning Research13(10), 281–305 (2012)
Bergstra, J., Bengio, Y.: Random search for hyper-parameter optimization. Journal of Machine Learning Research13(10), 281–305 (2012)
work page 2012
-
[4]
In: Advances in Neural Information Processing Systems 32, 2019
Berthelot, D., Carlini, N., Goodfellow, I.J., Papernot, N., Oliver, A., Raffel, C.: Mixmatch: A holistic approach to semi-supervised learning. In: Advances in Neural Information Processing Systems 32, 2019. pp. 5050–5060 (2019)
work page 2019
-
[5]
In: Larochelle, H., Ranzato, M., Hadsell, R., Balcan, M., Lin, H
Borovitskiy, V., Terenin, A., Mostowsky, P., Deisenroth, M.P.: Matérn gaussian processes on riemannian manifolds. In: Larochelle, H., Ranzato, M., Hadsell, R., Balcan, M., Lin, H. (eds.) Advances in Neural Information Processing Systems 33: Annual Conference on Neural Information Processing Systems 2020, NeurIPS 2020, December 6-12, 2020, virtual (2020)
work page 2020
-
[6]
Calandra, R., Peters, J., Rasmussen, C., Deisenroth, M.: Manifold gaussian pro- cesses for regression (11 2016).https://doi.org/10.1109/IJCNN.2016.7727626
arXiv 2016
-
[7]
IEEE Robotics & Automation Magazine27, 33–45 (2019) 16 Nguyen et al
Calinon, S.: Gaussians on riemannian manifolds: Applications for robot learning and adaptive control. IEEE Robotics & Automation Magazine27, 33–45 (2019) 16 Nguyen et al
work page 2019
Show all 58 references
-
[8]
Bulletin of the American Mathematical Society 46, 255–308 (2009)
Carlsson, G.E.: Topology and data. Bulletin of the American Mathematical Society 46, 255–308 (2009)
2009
-
[9]
arXiv preprint arXiv:2005.14601 (2020)
Chen, J., Zhu, G., Yuan, C., Huang, Y.: Semi-supervised embedding learning for high-dimensional bayesian optimization. arXiv preprint arXiv:2005.14601 (2020)
2020 arXiv
-
[10]
Chikuse, Y.: Statistics on special manifolds (2003)
2003
-
[11]
In: NeurIPS (2022)
Dai, Z., Shu, Y., Low, B.K.H., Jaillet, P.: Sample-then-optimize batch neural thompson sampling. In: NeurIPS (2022)
2022
-
[12]
Dunson, D., Wu, N.: Inferring manifolds from noisy data using gaussian processes (10 2021)
2021
-
[13]
In: Conference on Uncertainty in Artificial Intelligence (2021)
Eriksson, D., Jankowiak, M.: High-dimensional bayesian optimization with sparse axis-aligned subspaces. In: Conference on Uncertainty in Artificial Intelligence (2021)
2021
-
[14]
In: Advances in Neural Information Processing Systems
Eriksson, D., Pearce, M., Gardner, J., Turner, R.D., Poloczek, M.: Scalable global optimization via local bayesian optimization. In: Advances in Neural Information Processing Systems. vol. 32 (2019)
2019
-
[15]
In: Ad- vances in Neural Information Processing Systems
Gardner, J., Pleiss, G., Weinberger, K.Q., Bindel, D., Wilson, A.G.: Gpytorch: Blackbox matrix-matrix gaussian process inference with gpu acceleration. In: Ad- vances in Neural Information Processing Systems. vol. 31 (2018)
2018
-
[16]
ACS Central Science 4, 268 – 276 (2018)
Gómez-Bombarelli, R., Duvenaud, D.K., Hernández-Lobato, J.M., Aguilera- Iparraguirre, J., Hirzel, T.D., Adams, R.P., Aspuru-Guzik, A.: Automatic chemical design using a data-driven continuous representation of molecules. ACS Central Science 4, 268 – 276 (2018)
2018
-
[17]
Journal of Machine Learning Research17(69), 1–26 (2016)
Guhaniyogi, R., Dunson, D.B.: Compressed gaussian process for manifold regres- sion. Journal of Machine Learning Research17(69), 1–26 (2016)
2016
-
[18]
Gupta, A., Dasgupta, S.: An elementary proof of the johnson-lindenstrauss lemma (1999)
1999
-
[19]
In: NeurIPS (2021)
Hutchinson, M., Terenin, A., Borovitskiy, V., Takao, S., Teh, Y.W., Deisenroth, M.P.: Vector-valued gaussian processes on riemannian manifolds via gauge inde- pendent projected kernels. In: NeurIPS (2021)
2021
-
[20]
In: CoRL (2021)
Jaquier, N., Borovitskiy, V., Smolensky, A., Terenin, A., Asfour, T., Rozo, L.D.: Geometry-aware bayesian optimization in robotics using riemannian matérn ker- nels. In: CoRL (2021)
2021
-
[21]
In: Advances in Neural Information Processing Systems
Jaquier, N., Rozo, L.: High-dimensional bayesian optimization via nested rieman- nian manifolds. In: Advances in Neural Information Processing Systems. vol. 33, pp. 20939–20951 (2020)
2020
-
[22]
In: CoRL (2019)
Jaquier, N., Rozo, L.D., Calinon, S., Bürger, M.: Bayesian optimization meets riemannian manifolds in robot learning. In: CoRL (2019)
2019
-
[23]
Contemporary mathematics 26, 189–206 (1984)
Johnson, W.B.: Extensions of lipschitz mappings into hilbert space. Contemporary mathematics 26, 189–206 (1984)
1984
-
[24]
In: ICML (2015)
Kandasamy, K., Schneider, J.G., Póczos, B.: High dimensional bayesian optimisa- tion and bandits via additive models. In: ICML (2015)
2015
-
[25]
In: ICML (2019)
Kirschner, J., Mutný, M., Hiller, N., Ischebeck, R., Krause, A.: Adaptive and safe bayesian optimization in high dimensions via one-dimensional subspaces. In: ICML (2019)
2019
-
[26]
In: 5th In- ternational Conference on Learning Representations, ICLR 2017, Toulon, France, April 24-26, 2017, Conference Track Proceedings
Laine, S., Aila, T.: Temporal ensembling for semi-supervised learning. In: 5th In- ternational Conference on Learning Representations, ICLR 2017, Toulon, France, April 24-26, 2017, Conference Track Proceedings. OpenReview.net (2017)
2017
-
[27]
Annals of Global Analysis and Geometry60, 1–29 (10 2021)
Leobacher, G., Steinicke, A.: Existence, uniqueness and regularity of the projection onto differentiable manifolds. Annals of Global Analysis and Geometry60, 1–29 (10 2021). https://doi.org/10.1007/s10455-021-09788-z HD-BO via Random Projection of Manifold Subspaces 17
2021 doi
-
[28]
In: Advances in Neural Information Processing Systems
Letham, B., Calandra, R., Rai, A., Bakshy, E.: Re-examining linear embeddings for high-dimensional bayesian optimization. In: Advances in Neural Information Processing Systems. vol. 33, pp. 1546–1558 (2020)
2020
-
[29]
In: IJCAI (2017)
Li, C., Gupta, S., Rana, S., Nguyen, V., Venkatesh, S., Shilton, A.: High dimen- sional bayesian optimization using dropout. In: IJCAI (2017)
2017
-
[30]
In: AISTATS (2016)
Li, C.L., Kandasamy, K., Póczos, B., Schneider, J.G.: High dimensional bayesian optimization via restricted projection pursuit models. In: AISTATS (2016)
2016
-
[31]
In: Optimization Techniques IFIP Technical Conference Novosibirsk, July 1–7, 1974
Močkus, J.: On bayesian methods for seeking the extremum. In: Optimization Techniques IFIP Technical Conference Novosibirsk, July 1–7, 1974. pp. 400–404. Berlin, Heidelberg (1975)
1975
-
[32]
Machine Learning109(9), 1925– 1943 (2020)
Moriconi, R., Deisenroth, M.P., Sesh Kumar, K.: High-dimensional bayesian op- timization using low-dimensional feature spaces. Machine Learning109(9), 1925– 1943 (2020)
2020
-
[33]
In: ICML (2019)
Nayebi, A., Munteanu, A., Poloczek, M.: A framework for bayesian optimization in embedded subspaces. In: ICML (2019)
2019
-
[34]
Discrete & Computational Geometry39, 419–441 (2008)
Niyogi, P., Smale, S., Weinberger, S.: Finding the homology of submanifolds with high confidence from random samples. Discrete & Computational Geometry39, 419–441 (2008)
2008
-
[35]
In: NeurIPS (2021)
Notin, P., Hernández-Lobato, J.M., Gal, Y.: Improving black-box optimization in vae latent space using decoder uncertainty. In: NeurIPS (2021)
2021
-
[36]
In: Advances in Neural Information Processing Systems, NeurIPS 2022
Papenmeier, L., Nardi, L., Poloczek, M.: Increasing the scope as you learn: Adap- tive bayesian optimization in nested subspaces. In: Advances in Neural Information Processing Systems, NeurIPS 2022. vol. 35 (2022)
2022
-
[37]
Persson, M.: The whitney embedding theorem (2014)
2014
-
[38]
In: 2018 IEEE Inter- national Conference on Robotics and Automation (ICRA)
Rai, A., Antonova, R., Song, S., Martin, W., Geyer, H., Atkeson, C.: Bayesian optimization using domain knowledge on the atrias biped. In: 2018 IEEE Inter- national Conference on Robotics and Automation (ICRA). pp. 1771–1778 (2018). https://doi.org/10.1109/ICRA.2018.8461237
2018
-
[39]
The MIT Press (2005)
Rasmussen, C.E., Williams, C.K.I.: Gaussian Processes for Machine Learning (Adaptive Computation and Machine Learning). The MIT Press (2005)
2005
-
[40]
In: Proceedings of the Twenty-First International Conference on Artificial Intelligence and Statistics (2018)
Rolland, P., Scarlett, J., Bogunovic, I., Cevher, V.: High-dimensional bayesian optimization via additive models with overlapping groups. In: Proceedings of the Twenty-First International Conference on Artificial Intelligence and Statistics (2018)
2018
-
[41]
In: Advances in Neural Information Processing Systems
Snoek, J., Larochelle, H., Adams, R.P.: Practical bayesian optimization of ma- chine learning algorithms. In: Advances in Neural Information Processing Systems. vol. 25 (2012)
2012
-
[42]
Constructive Approximation (2019)
Sober, B., Levin, D.: Manifold approximation by moving least-squares projection (mmls). Constructive Approximation (2019)
2019
-
[43]
IEEE Transactions on Information Theory58(5), 3250–3265 (2012).https://doi.org/10.1109/TIT
Srinivas, N., Krause, A., Kakade, S.M., Seeger, M.W.: Information-theoretic regret bounds for gaussian process optimization in the bandit setting. IEEE Transactions on Information Theory58(5), 3250–3265 (2012).https://doi.org/10.1109/TIT. 2011.2182033
2012
-
[44]
In: 5th Interna- tional Conference on Learning Representations, 2017, Workshop Track Proceedings
Tarvainen, A., Valpola, H.: Mean teachers are better role models: Weight-averaged consistency targets improve semi-supervised deep learning results. In: 5th Interna- tional Conference on Learning Representations, 2017, Workshop Track Proceedings
2017
-
[45]
IEEE Transactions on Neural Networks20, 542 (01 2009)
Thomas, P.: Semi-supervised learning by olivier chapelle, bernhard schölkopf, and alexander zien (review). IEEE Transactions on Neural Networks20, 542 (01 2009)
2009
-
[46]
In: 2012 IEEE/RSJ International Conference on Intelligent Robots and Systems
Todorov, E., Erez, T., Tassa, Y.: Mujoco: A physics engine for model-based control. In: 2012 IEEE/RSJ International Conference on Intelligent Robots and Systems. pp. 5026–5033 (2012).https://doi.org/10.1109/IROS.2012.6386109 18 Nguyen et al
2012
-
[47]
In: AAAI (2020)
Tran-The, H., Gupta, S., Rana, S., Venkatesh, S.: Trading convergence rate with computational budget in high dimensional bayesian optimization. In: AAAI (2020)
2020
-
[48]
In: Proceedings of The 25th International Conference on Artificial Intelligence and Statistics (2022)
Tran-The, H., Gupta, S., Rana, S., Venkatesh, S.: Regret bounds for expected improvement algorithms in gaussian process bandit optimization. In: Proceedings of The 25th International Conference on Artificial Intelligence and Statistics (2022)
2022
-
[49]
van der Vaart, A., Wellner, J.A.: Weak convergence and empirical processes: With applications to statistics (1996)
1996
-
[50]
ArXivabs/1703.01973 (2017)
Wang, Z., Li, C., Jegelka, S., Kohli, P.: Batched high-dimensional bayesian opti- mization via structural kernel learning. ArXivabs/1703.01973 (2017)
2017 arXiv
-
[52]
In: Proceedings of the 19th International Conference on Artificial Intelligence and Statistics (2016)
Wilson, A.G., Hu, Z., Salakhutdinov, R., Xing, E.P.: Deep kernel learning. In: Proceedings of the 19th International Conference on Artificial Intelligence and Statistics (2016)
2016
-
[53]
In: Advances in Neural Information Processing Systems 33, 2020 (2020)
Xie, Q., Dai, Z., Hovy, E.H., Luong, T., Le, Q.: Unsupervised data augmentation for consistency training. In: Advances in Neural Information Processing Systems 33, 2020 (2020)
2020
-
[54]
The Annals of Statistics 44(2), 876 – 905 (2016).https://doi.org/10.1214/15-AOS1390
Yang, Y., Dunson, D.B.: Bayesian manifold regression. The Annals of Statistics 44(2), 876 – 905 (2016).https://doi.org/10.1214/15-AOS1390
2016 doi
-
[55]
In: Proceedings of the Twenty-Eighth International Joint Conference on Artificial Intelligence, IJCAI-19 (2019)
Zhang, M., Li, H., Su, S.: High dimensional bayesian optimization via supervised dimension reduction. In: Proceedings of the Twenty-Eighth International Joint Conference on Artificial Intelligence, IJCAI-19 (2019)
2019
-
[56]
(eds.) International Conference on Machine Learning, ICML 2023, 23-29 July 2023, Honolulu, Hawaii, USA
Ziomek, J.K., Bou-Ammar, H.: Are random decompositions all we need in high dimensional bayesian optimisation? In: Krause, A., Brunskill, E., Cho, K., En- gelhardt, B., Sabato, S., Scarlett, J. (eds.) International Conference on Machine Learning, ICML 2023, 23-29 July 2023, Hon...
2023
-
[57]
Let O ∈ Rn×k is the orthogonal matrix (i.e OT O = Ik×k)
Šehić, K., Gramfort, A., Salmon, J., Nardi, L.: Lassobench: A high-dimensional hyperparameter optimization benchmark suite for lasso (2021).https://doi.org/ 10.48550/ARXIV.2111.02790 HD-BO via Random Projection of Manifold Subspaces 19 Supplementary Material A Proofs of Theore...
-
[58]
Surprisingly, TuRBO shows the worst performance in this experiment
As we can see, our method shows the best performance followed by HeSBO, REMBO, and SILBO. Surprisingly, TuRBO shows the worst performance in this experiment. 0 50 100 150 200 250 300 Iterations 400 350 300 250 200 150 Function Value 6392D Mujoco Humanoid RPM-BO HeSBO SILBO SIR...
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.