Pith. sign in

REVIEW 3 major objections 6 minor 1 cited by

Transfer Learning of Surrogate Models via Domain Affine Transformation Across Synthetic and Real-World Benchmarks

T0 review · 3 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read A random forest surrogate trained on one function can be reused on an unknown rotated and translated version of the same function using only tens of target samples.

desk verdict A clean, reproducible extension of affine transfer learning to random forests, but the real-world benchmarks never test the affine assumption, so the title overclaims. read the letter →

arxiv 2501.14012 v3 pith:GD4IB22J submitted 2025-01-23 cs.LG cs.AI

classification cs.LGcs.AI
keywords transferlearningsurrogatemodelsrandomforestregressionaffinetransformationdomainshiftCMA-ESBlack-BoxOptimizationBenchmarkreal-world
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

The paper tries to establish that a random forest regression model trained on one function can be transferred to a second function whose input domain is an unknown rotation and translation of the first, by fitting that affine map on a small set of target samples. The fitting is done with the covariance matrix adaptation evolution strategy, which optimizes the rotation through its skew-symmetric matrix representation. The reported evidence is that the transferred random forest beats a model trained from scratch with only 50 to 100 target samples across most functions of the Black-Box Optimization Benchmark and in three of the four real-world tasks. If correct, this gives a data-efficient route to surrogate modeling for expensive simulations, since the expensive source model is trained once and then reused.

What carries the argument

The machinery is an affine reparameterization of the source model, $\hat{f}_T(x)=\hat{f}_S(Wx+v)$, with the rotation searched in the Lie algebra $\mathfrak{so}(d)$: a vector of $d(d-1)/2$ real numbers is packed into a skew-symmetric matrix $A$, and the rotation is $W=\exp(A)$. This converts a constrained search over the rotation group into an unconstrained Euclidean search that CMA-ES can handle, while the translation $v$ is searched directly. The same transfer loss is used as in the differentiable case, but the optimizer no longer requires gradients.

What would settle it

Take a source-target pair generated by a scaling such as $f_T(x)=f_S(2x)$ or $f_S(x/2)$, so the domain map is not in $\mathrm{SO}(d)$, and run the transfer with 50 samples: if the transferred model does not beat scratch training on most instances, the rotation-only affine assumption is the limiting condition.

Watch

Extended reading notes

Core claim

The paper's central claim is that non-differentiable surrogates, specifically random forest regression, can be transferred under an affine domain shift by solving $\min_{W \in \mathrm{SO}(d), v \in \mathbb{R}^d} \frac{1}{|T|}\sum_{x \in T}(\hat{f}_S(Wx+v) - f_T(x))^2$, where $\hat{f}_S$ is the source-trained model and $T$ is a small transfer set from the target. Because random forests have no gradients, the paper replaces the Riemannian gradient optimizer used for Gaussian process regression with CMA-ES, representing rotations in the Lie algebra $\mathfrak{so}(d)$ of skew-symmetric matrices and recovering $W$ by the matrix exponential. It reports that the transferred random forest achieves lower symmetric mean absolute percentage error than a scratch-trained model with as few as 50 to 100 transfer samples, especially in higher dimensions, and that this advantage shrinks as transfer data grows.

Load-bearing premise

The method assumes the target function is exactly the source function composed with a rotation and translation of its input domain, and the real-world benchmarks do not verify that relation.

Editorial extensions

If this is right

  • At transfer sizes of 50 to 100 samples, the transferred random forest is reported to beat the scratch-trained model on most BBOB functions, with the gap larger in ten dimensions than in two dimensions.
  • The benefit of transfer shrinks as the transfer set grows, with scratch-trained models catching up once hundreds of target samples are available.
  • Transfer is ineffective when the source surrogate is a poor fit to its own source function, as with F23, and is limited on complex multimodal functions such as F16 and F21 through F24.
  • Real-world porkchop plot, robot arm, and MarioGAN tasks show transferred random forests winning in low-data regimes, while the vehicle dynamics benchmark largely violates the affine assumption and transfer fails there.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • An extension not tested in the paper: because CMA-ES only needs function evaluations, the same wrapper should apply to other non-differentiable surrogates, such as k-nearest-neighbor models or decision tree ensembles beyond random forests.
  • The paper's failure on vehicle dynamics suggests a cheap diagnostic: fit the affine transfer and compare its loss on the transfer set to a scratch model's loss; if the transfer loss does not drop, the affine assumption is likely violated.
  • A testable improvement would be to allow scaling or reflection in the affine map, for example $W \in \mathrm{GL}(d)$ or orthogonal matrices with determinant $-1$, since the paper restricts to rotations and lists nonlinear warping as future work.
  • If confirmed, the method changes the economics of simulation-driven design: one expensive training run can serve many related configurations, with only a tiny target sample needed for adaptation.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 6 minor

Summary. The paper proposes a method for transferring random forest regression (RFR) surrogate models from a source function to a target function assumed to be related by an input-domain transformation f_T(x) = f_S(Wx + v), where W is a rotation in SO(d) and v is a translation. The transformation parameters are optimized on a small transfer set using CMA-ES over the Lie algebra representation of SO(d). The method is evaluated on BBOB synthetic benchmarks and on four real-world transfer learning problems (porkchop plots, SARCOS robot arm torques, vehicle dynamics, and MarioGAN). The reported results show that the transferred RFR often outperforms an RFR trained from scratch when the transfer set is small, especially on BBOB, with notable exceptions on several BBOB functions and on the vehicle dynamics benchmark.

Significance. If the central claim holds, the paper extends affine-domain transfer learning, previously limited to differentiable surrogates such as Gaussian processes, to non-differentiable random forest surrogates. This is a useful practical contribution because random forests are common in low-data engineering settings. The paper is honest in reporting failure cases, and it provides ten repetitions, statistical significance testing, and a Zenodo repository for reproducibility. However, the strongest evidence is obtained on synthetic BBOB tasks where the affine assumption is enforced by construction. The real-world benchmarks are presented as validation but do not verify the affine symmetry, and at least one benchmark appears to violate it. The significance of the real-world results is therefore conditional on an unmeasured assumption.

major comments (3)
  1. [Section IV.A, V.B] The synthetic BBOB targets are constructed by randomly generating rotation matrices and translation vectors applied to the source function, so the affine symmetry f_T(x) = f_S(Wx+v) holds exactly by construction. The positive results in Section V.A therefore validate only that CMA-ES can recover the transformation under the method's own assumption; they provide no evidence that the assumption is plausible for any real-world task. The real-world benchmarks in Section V.B are the only external evidence, yet no diagnostic is reported that checks whether any source-target pair actually satisfies the affine relation. This gap is load-bearing for the title's and abstract's claim of transferring 'across synthetic and real-world benchmarks' and for the conclusion that the method offers 'significant practical advantages.' The authors should either add a validation analysis for the real-world benchmarks (e.g., fit the transformation on a held-out subset and measure residual SMAPE against a no-transfer baseline, or inspect the recovered W and v for consistency with domain knowledge), or explicitly reclassify the real-world results as exploratory evidence that does not establish the affine assumption.
  2. [Section IV.B.2, Fig. 4] For the SARCOS robot arm benchmark, the source and target functions share the same 21-dimensional input space (joint positions, velocities, accelerations) and differ only in which joint's torque is predicted. Under an exact input-domain affine symmetry, the only admissible transformation is W=I and v=0, making the transfer equivalent to using the source model without adaptation. The mixed results, most notably torque7→torque1 losing to scratch-trained RFR at every transfer size, are therefore unlikely to be explained by an input-domain affine shift. The paper should either justify why this benchmark is a meaningful test of the affine domain transformation assumption, or report and analyze the optimized W and v to show what structure the method actually exploits. Without this, the robot arm experiment does not support the paper's central claim.
  3. [Section III] The paper uses the term 'affine transformation' but restricts W to the special orthogonal group SO(d), which together with a translation vector v gives only rigid motions (rotations and translations), not general affine transformations that include scaling, shear, and reflection. Real-world surrogate modeling tasks often have different unit scales, input ranges, or parameterizations between source and target, so the restriction to SO(d) may be exactly the wrong symmetry for those tasks. The conclusion acknowledges nonlinear domain changes in Vehicle Dynamics but does not acknowledge the scaling/reflection limitation. At minimum, the authors should explicitly state that the method handles only rotation-translation shifts, and ideally they should compare against a version that allows a general linear map (e.g., full GL(d)) to determine whether the SO(d) restriction is a practical bottleneck.
minor comments (6)
  1. [Section V.B.3] The text contains a typo: 'instacne' should be 'instance' in the sentence 'The results underscore the unique difficulty of transferring from instacne3 to other instances.'
  2. [Section I] The Introduction uses the phrase 'non-differential models' and 'differential models' where 'non-differentiable models' and 'differentiable models' are meant; this terminology should be corrected for consistency with Section III.
  3. [Algorithm 1] Line 12 of Algorithm 1 reads 'Update m, C and σ with and {xi}λ i=1 and {yi}λ i=1'; the word 'and' appears to be a typo, and the sentence should be rephrased to 'Update m, C and σ using {xi} and {yi}'.
  4. [Section III] The displayed equation for the loss L(v, W) is rendered as 'L(v, W) = n−1 T P ...', which is hard to read; it should be typeset as n_T^{-1} \sum ... for clarity.
  5. [Fig. 2] The caption of Fig. 2 does not define the color scale; please state explicitly that red indicates positive percentage difference (transfer better) and blue indicates negative, since the reader cannot infer the mapping from the grayscale version.
  6. [Section V.A] The comparison with transferred GPR results from [13] would be more informative if the experimental settings (transfer set sizes, dimensions, number of repetitions) were aligned; as reported, the comparison is only qualitative and should be labeled as such.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the affine assumption is explicitly stated and tested on synthetic data constructed under it, but transfer parameters are fit on training points and evaluated on held-out points, and the real-world benchmarks are external.

full rationale

The paper's derivation chain is self-contained and does not reduce to its inputs. The affine symmetry f_T(x)=f_S(Wx+v) is an explicit assumption in Section III, and the BBOB targets are constructed by randomly generated rotations and translations in Section IV.A, so those experiments are a controlled test of the optimizer under the method's own premise rather than an independent validation of the premise. This is a standard synthetic benchmark design and not a circular step: the transfer parameters W and v are optimized on a small transfer set and evaluated on a separate test set, so the reported SMAPE improvements are not forced by construction. The real-world benchmarks (porkchop plots, SARCOS robot arm, vehicle dynamics, MarioGAN) are external datasets; the paper does not verify the affine assumption on them, and indeed reports failures (e.g., vehicle dynamics, torque7 to torque1), which is a correctness or external-validity concern, not circularity. Self-citations to [13] (the prior GPR transfer method) and [32] (vehicle dynamics benchmark) are normal and not load-bearing: the current paper's contribution is the CMA-ES-based optimization for non-differentiable RFR, which is stated and implemented in the paper itself. No quoted equation or result is equivalent to its own input by construction.

Assumptions & free parameters 4 free parameters · 3 assumptions · 0 invented entities

No new physical entities or forces are introduced. The method's free parameters are the affine transformation and optimization hyperparameters; the central synthetic benchmark makes the affine assumption true by construction, while real-world benchmarks test it externally.

free parameters (4)
  • Affine rotation matrix W (d(d-1)/2 parameters) = Varies per task; not reported as values
    Optimized with CMA-ES on the Lie algebra so(d) to minimize SMAPE on the transfer set (Algorithm 1); this is the central mechanism of the method.
  • Affine translation vector v (d parameters) = Varies per task
    Optimized together with W on the transfer set (Algorithm 1).
  • CMA-ES bounds and initial step size = Rotation bounds [-pi, pi]; translation bounds [-1.5, 1.5]; initial step one-fifth of average range; BIPOP-CMA-ES with…
    Hand-set optimization hyperparameters in Section IV.D; they influence whether a good affine transform is found.
  • RFR hyperparameters for vehicle dynamics = Tree count [100, 1500], depth [10, 60], split/leaf samples [2, 20] and [1, 10], features fraction [0.1, 1.0]
    Tuned with SMAC3; affects both transferred and scratch models, but the tuning data source is not specified.
assumptions (3)
  • domain assumption Source and target functions satisfy f_T(x) = f_S(Wx + v) for some unknown W in SO(d) and v in R^d.
    Stated in Section III as the affine symmetry; the entire transfer method is built on it.
  • domain assumption The transfer dataset, sampled uniformly, is informative enough that minimizing empirical squared loss over W and v yields parameters that generalize to the target function.
    The method evaluates L(v, W) on T and assumes this optimum transfers; text mentions overfitting when T is very small (Section V.B.1).
  • domain assumption BBOB target instances are related to source instances by rotations and translations.
    Section IV.A generates target problems using random rotation matrices and translation vectors, making the affine assumption true by construction for the synthetic benchmark.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Transfer Learning of Surrogate Models via Domain Affine Transformation Across Synthetic and Real-World Benchmarks." pith.science (2026). https://pith.science/paper/GD4IB22J

@misc{pith2026250114012,
  author       = {Pith},
  title        = {Pith review of: Transfer Learning of Surrogate Models via Domain Affine Transformation Across Synthetic and Real-World Benchmarks},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/GD4IB22J}},
  note         = {Machine review of arXiv:2501.14012}
}
read the original abstract

Surrogate models are frequently employed as efficient substitutes for the costly execution of real-world processes. However, constructing a high-quality surrogate model often demands extensive data acquisition. A solution to this issue is to transfer pre-trained surrogate models for new tasks, provided that certain invariances exist between tasks. This study focuses on transferring non-differentiable surrogate models (e.g., random forests) from a source function to a target function, where we assume their domains are related by an unknown affine transformation, using only a limited amount of transfer data points evaluated on the target. Previous research attempts to tackle this challenge for differentiable models, e.g., Gaussian process regression, which minimizes the empirical loss on the transfer data by tuning the affine transformations. In this paper, we extend the previous work to the random forest and assess its effectiveness on a widely-used artificial problem set - Black-Box Optimization Benchmark (BBOB) testbed, and on four real-world transfer learning problems. The results highlight the significant practical advantages of the proposed method, particularly in reducing both the data requirements and computational costs of training surrogate models for complex real-world scenarios.

Figures

Figures reproduced from arXiv: 2501.14012 by the authors.

Figure 1
Figure 1. Synthetic transfer learning tasks are constructed by transferring from different instances of the same BBOB functions [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. The comparison evaluates Random forest regression models obtained through transfer learning against those trained [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. The comparison evaluates Random forest regression models obtained through transfer learning against those trained [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (18 more)
Figure 4
Figure 4. Figure 4: The comparison evaluates Random forest regression models obtained through transfer learning against those trained [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: The comparison evaluates Random forest regression models obtained through transfer learning against those trained [PITH_FULL_IMAGE:figures/full_fig_p006_5.png]
Figure 6
Figure 6. Figure 6: The comparison evaluates Random forest regression models obtained through transfer learning against those trained [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]
Figure 7
Figure 7. Figure 7: The SMAPE values (y-axis) for three model variants — original RFR, transferred RFR, and the model trained exclusively on the transfer dataset — are plotted against the size of the transfer dataset on 2-dimensional BBOB functions. The dataset sizes (x-axis) considered a…
Figure 8
Figure 8. Figure 8: The SMAPE values (y-axis) for three model variants — original RFR, transferred RFR, and the model trained exclusively on the transfer dataset — are plotted against the size of the transfer dataset on 5-dimensional BBOB functions. The dataset sizes (x-axis) considered a…
Figure 9
Figure 9. Figure 9: The SMAPE values (y-axis) for three model variants — original RFR, transferred RFR, and the model trained exclusively on the transfer dataset — are plotted against the size of the transfer dataset on 10-dimensional BBOB functions. The dataset sizes (x-axis) considered …
Figure 10
Figure 10. Figure 10: The SMAPE values (displayed on the y-axis) for three model variants—original RFR, transferred RFR, and a model trained exclusively on the transfer dataset—are analyzed for the Earth-to-Mars mission using Porkchop Plot Benchmarks in Interplanetary Trajectory Optimizati…
Figure 11
Figure 11. Figure 11: The comparison evaluates the performance of Random forest regression (RFR) models obtained through transfer [PITH_FULL_IMAGE:figures/full_fig_p013_11.png]
Figure 12
Figure 12. Figure 12: The SMAPE values (displayed on the y-axis) for three model variants—original RFR, transferred RFR, and a model trained exclusively on the transfer dataset—are analyzed for the Earth-to-Venus mission using Porkchop Plot Benchmarks in Interplanetary Trajectory Optimizat…
Figure 13
Figure 13. Figure 13: The comparison evaluates the performance of Random forest regression (RFR) models obtained through transfer [PITH_FULL_IMAGE:figures/full_fig_p015_13.png]
Figure 14
Figure 14. Figure 14: The SMAPE values (displayed on the y-axis) for three model variants—original RFR, transferred RFR, and a model trained exclusively on the transfer dataset—are analyzed for the Mercury-to-Earth mission using Porkchop Plot Benchmarks in Interplanetary Trajectory Optimiz…
Figure 15
Figure 15. Figure 15: The SMAPE values (displayed on the y-axis) for three model variants—original RFR, transferred RFR, and a model trained exclusively on the transfer dataset—are analyzed on the Kinematics of the Robot Arm real-world application. These values are plotted against transfer…
Figure 16
Figure 16. Figure 16: The SMAPE values (displayed on the y-axis) for three model variants—original RFR, transferred RFR, and a model trained exclusively on the transfer dataset—are analyzed on the real-world optimization benchmark from vehicle dynamics. These values are plotted against tra…
Figure 17
Figure 17. Figure 17: The SMAPE values (displayed on the y-axis) for three model variants—original RFR, transferred RFR, and a model trained exclusively on the transfer dataset—are analyzed on F5 of Single-Objective Game-Benchmark MarioGAN Suite. These values are plotted against transfer d…
Figure 18
Figure 18. Figure 18: The comparison evaluates the performance of Random forest regression (RFR) models obtained through transfer [PITH_FULL_IMAGE:figures/full_fig_p020_18.png]
Figure 19
Figure 19. Figure 19: The SMAPE values (displayed on the y-axis) for three model variants—original RFR, transferred RFR, and a model trained exclusively on the transfer dataset—are analyzed on F6 of Single-Objective Game-Benchmark MarioGAN Suite. These values are plotted against transfer d…
Figure 20
Figure 20. Figure 20: The comparison evaluates the performance of Random forest regression (RFR) models obtained through transfer [PITH_FULL_IMAGE:figures/full_fig_p022_20.png]
Figure 21
Figure 21. Figure 21: The SMAPE values (displayed on the y-axis) for three model variants—original RFR, transferred RFR, and a model trained exclusively on the transfer dataset—are analyzed on F1 of Single-Objective Game-Benchmark MarioGAN Suite. These values are plotted against transfer d…

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. OpenAlex reports about 2 citations worldwide. Full citation record

  1. Transfer Learning of Surrogate Models: Integrating Domain Warping and Affine Transformations

    cs.LG 2025-01 conditional novelty 4.0 of 10

    Transfer learning of Gaussian process surrogates is improved by fitting nonlinear beta-CDF input warping plus affine transformations on small target datasets.

Reference graph

Works this paper leans on

46 extracted references · 26 canonical work pages · cited by 1 Pith paper

  1. [14]

    Learn on source, refine on target: A model transfer learning framework with random forests,

    N. Segev, M. Harel, S. Mannor, K. Crammer, and R. El-Yaniv, “Learn on source, refine on target: A model transfer learning framework with random forests,” IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 39, no. 9, pp. 1811–1824, 2017. [Online]. Available: https://doi.org/10.1109/TPAMI.2016.2618118

  2. [1]

    A. I. J. Forrester, A. Sobester, and A. J. Keane, Engineering Design via Surrogate Modelling - A Practical Guide . Wiley, 2008. [Online]. Available: https://doi.org/10.1002/9780470770801

  3. [2]

    Recent advances in surrogate-based optimization,

    A. I. Forrester and A. J. Keane, “Recent advances in surrogate-based optimization,” Progress in Aerospace Sciences , vol. 45, no. 1-3, pp. 50–79, 2009

  4. [3]

    Advances in surrogate based modeling, feasibility analysis, and optimization: A review,

    A. Bhosekar and M. Ierapetritou, “Advances in surrogate based modeling, feasibility analysis, and optimization: A review,” Computers & Chemical Engineering, vol. 108, pp. 250–267, 2018. [Online]. Available: https://doi.org/10.1016/j.compchemeng.2017.09.017

  5. [4]

    Surrogate models in evolutionary single-objective optimization: A new taxonomy and experimental study,

    H. Tong, C. Huang, L. L. Minku, and X. Yao, “Surrogate models in evolutionary single-objective optimization: A new taxonomy and experimental study,” Information Sciences, vol. 562, pp. 414–437, 2021. [Online]. Available: https://doi.org/10.1016/j.ins.2021.03.002

  6. [5]

    Convolutional neural network surrogate-assisted GOMEA,

    A. Dushatskiy, A. M. Mendrik, T. Alderliesten, and P. A. N. Bosman, “Convolutional neural network surrogate-assisted GOMEA,” in Proceedings of the Genetic and Evolutionary Computation Conference, GECCO 2019, Prague, Czech Republic, July 13-17, 2019 , A. Auger and T. St ¨utzle, Eds. ACM, 2019, pp. 753–761. [Online]. Available: https://doi.org/10.1145/33217...

  7. [6]

    A constrained competitive swarm optimizer with an svm-based surrogate model for feature selection,

    B. H. Nguyen, B. Xue, and M. Zhang, “A constrained competitive swarm optimizer with an svm-based surrogate model for feature selection,” IEEE Transactions on Evolutionary Computation , vol. 28, no. 1, pp. 2–16,

  8. [7]

    Adaptive bayesian support vector regression model for structural reliability analysis,

    K. Cheng and Z. Lu, “Adaptive bayesian support vector regression model for structural reliability analysis,” Reliability Engineering & System Safety , vol. 206, p. 107286, 2021. [Online]. Available: https://doi.org/10.1016/j.ress.2020.107286

Show all 46 references
  1. [8]

    A random forest-assisted evolutionary algorithm for data-driven constrained multiobjective combinatorial optimization of trauma systems,

    H. Wang and Y . Jin, “A random forest-assisted evolutionary algorithm for data-driven constrained multiobjective combinatorial optimization of trauma systems,” IEEE Transactions on Cybernetics , vol. 50, no. 2, pp. 536–549, 2020. [Online]. Available: https: //doi.org/10.1109/T...

  2. [9]

    Random forests for global sensitivity analysis: A selective review,

    A. Antoniadis, S. Lambert-Lacroix, and J. Poggi, “Random forests for global sensitivity analysis: A selective review,” Reliability Engineering & System Safety , vol. 206, p. 107312, 2021. [Online]. Available: https://doi.org/10.1016/j.ress.2020.107312

  3. [10]

    Gaussian process surrogate model with composite kernel learning for engineering design,

    P. Satria Palar, L. Rizki Zuhal, and K. Shimoyama, “Gaussian process surrogate model with composite kernel learning for engineering design,” American Institute of Aeronautics and Astronautics (AIAA) journal , vol. 58, no. 4, pp. 1864–1880, 2020

  4. [11]

    Deep gaussian process enabled surrogate models for aerodynamic flows,

    D. Rajaram, T. G. Puranik, A. Renganathan, W. J. Sung, O. J. Pinon- Fischer, D. N. Mavris, and A. Ramamurthy, “Deep gaussian process enabled surrogate models for aerodynamic flows,” in American Institute of Aeronautics and Astronautics (AIAA) scitech 2020 forum , 2020, p. 1640

  5. [12]

    R. B. Gramacy, Surrogates: Gaussian process modeling, design, and optimization for the applied sciences . Chapman and Hall/CRC, 2020

  6. [13]

    Transfer learning of surrogate models via domain affine transformation,

    S. Pan, D. Vermetten, M. L ´opez-Ib´a˜nez, T. B ¨ack, and H. Wang, “Transfer learning of surrogate models via domain affine transformation,” in Proceedings of the Genetic and Evolutionary Computation Conference, GECCO 2024, Melbourne, VIC, Australia, July 14-18, 2024, X. Li an...

  7. [15]

    Transfer learning in classification based on manifolc. models and its relation to tangent metric learning,

    S. Saralajew and T. Villmann, “Transfer learning in classification based on manifolc. models and its relation to tangent metric learning,” in 2017 International Joint Conference on Neural Networks, IJCNN 2017, Anchorage, AK, USA, May 14-19, 2017 . IEEE, 2017, pp. 1756–1765. [O...

  8. [16]

    Improved versions of learning vector quantization,

    T. Kohonen, “Improved versions of learning vector quantization,” in IJCNN 1990, International Joint Conference on Neural Networks, San Diego, CA, USA, June 17-21, 1990 . IEEE, 1990, pp. 545–550. [Online]. Available: https://doi.org/10.1109/IJCNN.1990.137622

  9. [17]

    Aspects in classification learning – review of recent developments in learning vector quantization,

    M. Kaden, M. Lange, D. Nebel, M. Riedel, T. Geweniger, and T. Villmann, “Aspects in classification learning – review of recent developments in learning vector quantization,” Foundations of Computing and Decision Sciences, vol. 39, no. 2, pp. 79–105, 2014

  10. [18]

    Pose-dependent tool tip dynamics prediction using transfer learning,

    G. Chen, Y . Li, and X. Liu, “Pose-dependent tool tip dynamics prediction using transfer learning,” International Journal of Machine Tools and Manufacture, vol. 137, pp. 30–41, 2019

  11. [19]

    Affine transfor- mations accelerate the training of physics-informed neural networks of a one-dimensional consolidation problem,

    L. Mandl, A. Mielke, S. M. Seyedpour, and T. Ricken, “Affine transfor- mations accelerate the training of physics-informed neural networks of a one-dimensional consolidation problem,” Scientific Reports, vol. 13, no. 1, p. 15566, 2023

  12. [20]

    Evolution strategies,

    M. Emmerich, O. M. Shir, and H. Wang, “Evolution strategies,” in Handbook of Heuristics , R. Mart ´ı, P. M. Pardalos, and M. G. C. Resende, Eds. Springer, 2018, pp. 89–119. [Online]. Available: https://doi.org/10.1007/978-3-319-07124-4 13

  13. [21]

    The CMA evolution strategy: A comparing review,

    N. Hansen, “The CMA evolution strategy: A comparing review,” in Towards a New Evolutionary Computation - Advances in the Estimation of Distribution Algorithms , ser. Studies in Fuzziness and Soft Computing, J. A. Lozano, P. Larra ˜naga, I. Inza, and E. Bengoetxea, Eds. Springe...

  14. [22]

    The CMA evolution strategy: A tutorial,

    ——, “The CMA evolution strategy: A tutorial,” CoRR, vol. abs/1604.00772, 2016. [Online]. Available: http://arxiv.org/abs/1604. 00772

  15. [23]

    Integration of new evolutionary approach with artificial neural network for solving short term load forecast problem,

    P. Singh and P. Dwivedi, “Integration of new evolutionary approach with artificial neural network for solving short term load forecast problem,” Applied Energy, vol. 217, pp. 537–549, 2018

  16. [24]

    A recommender system for metaheuristic algorithms for continuous optimization based on deep recurrent neural networks,

    Y . Tian, S. Peng, X. Zhang, T. Rodemann, K. C. Tan, and Y . Jin, “A recommender system for metaheuristic algorithms for continuous optimization based on deep recurrent neural networks,” IEEE Transactions on Artificial Intelligence , vol. 1, no. 1, pp. 5–18, 2020. [Online]. Av...

  17. [25]

    Towards learning universal hyperparameter optimizers with transformers,

    Y . Chen, X. Song, C. Lee, Z. Wang, R. Zhang, D. Dohan, K. Kawakami, G. Kochanski, A. Doucet, M. Ranzato, S. Perel, and N. de Freitas, “Towards learning universal hyperparameter optimizers with transformers,” in Advances in Neural Information Processing Systems ,

  18. [26]

    Surrogate-assisted multi-objective optimization via genetic programming based symbolic regression,

    K. Yang and M. Affenzeller, “Surrogate-assisted multi-objective optimization via genetic programming based symbolic regression,” in Evolutionary Multi-Criterion Optimization - 12th International Conference, EMO 2023, Leiden, The Netherlands, March 20-24, 2023, Proceedings, ser...

  19. [27]

    COCO: a platform for comparing continuous optimizers in a black-box setting,

    N. Hansen, A. Auger, R. Ros, O. Mersmann, T. Tusar, and D. Brockhoff, “COCO: a platform for comparing continuous optimizers in a black-box setting,” Optimization Methods and Software, vol. 36, no. 1, pp. 114–144, 2021. [Online]. Available: https://doi.org/10.1080/10556788.2020.1808977

  20. [28]

    Revisiting lambert’s problem,

    D. Izzo, “Revisiting lambert’s problem,” Celestial Mechanics and Dynamical Astronomy, vol. 121, pp. 1–15, 2015

  21. [29]

    Mars science laboratory launch-arrival space study: a pork chop plot analysis,

    A. D. Cianciolo, R. Powell, and M. K. Lockwood, “Mars science laboratory launch-arrival space study: a pork chop plot analysis,” in 2006 IEEE Aerospace Conference . IEEE, 2006, pp. 10–pp

  22. [30]

    On the nature of Earth-Mars porkchop plots,

    R. C. Woolley and C. W. Whetsel, “On the nature of Earth-Mars porkchop plots,” 2013. [Online]. Available: https://hdl.handle.net/2014/44336

  23. [31]

    C. E. Rasmussen and C. K. I. Williams, Gaussian processes for machine learning, ser. Adaptive computation and machine learning. MIT Press,

  24. [32]

    Real-world optimization benchmark from vehicle dynamics: Specification of problems in 2d and methodology for transferring (meta-)optimized algorithm parameters,

    A. Thomaser, M. V ogt, T. B ¨ack, and A. V . Kononova, “Real-world optimization benchmark from vehicle dynamics: Specification of problems in 2d and methodology for transferring (meta-)optimized algorithm parameters,” in Proceedings of the 15th International Joint Conference o...

  25. [33]

    Single- and multi-objective game-benchmark for evolutionary algorithms,

    V . V olz, B. Naujoks, P. Kerschke, and T. Tusar, “Single- and multi-objective game-benchmark for evolutionary algorithms,” in Proceedings of the Genetic and Evolutionary Computation Conference, GECCO 2019, Prague, Czech Republic, July 13-17, 2019 , A. Auger and T. St ¨utzle, ...

  26. [34]

    A pragmatic view of accuracy measurement in forecasting,

    B. E. Flores, “A pragmatic view of accuracy measurement in forecasting,” Omega, vol. 14, no. 2, pp. 93–98, 1986

  27. [35]

    Iohexperimenter: Benchmarking platform for iterative optimization heuristics,

    J. de Nobel, F. Ye, D. Vermetten, H. Wang, C. Doerr, and T. B ¨ack, “Iohexperimenter: Benchmarking platform for iterative optimization heuristics,” Evolutionary Computation , vol. 32, no. 3, pp. 205–210,

  28. [36]

    Scikit-learn: Machine learning in Python,

    F. Pedregosa, G. Varoquaux, A. Gramfort, V . Michel, B. Thirion, O. Grisel, M. Blondel, P. Prettenhofer, R. Weiss, V . Dubourg, J. Vanderplas, A. Passos, D. Cournapeau, M. Brucher, M. Perrot, and E. Duchesnay, “Scikit-learn: Machine learning in Python,” Journal of Machine Lear...

  29. [37]

    CMA-ES/pycma on Github,

    N. Hansen, Y . Akimoto, and P. Baudis, “CMA-ES/pycma on Github,” Zenodo, DOI:10.5281/zenodo.2559634, Feb. 2019. [Online]. Available: https://doi.org/10.5281/zenodo.2559634

  30. [38]

    SMAC3: A versatile bayesian optimization package for hyperparameter optimization,

    M. Lindauer, K. Eggensperger, M. Feurer, A. Biedenkapp, D. Deng, C. Benjamins, T. Ruhkopf, R. Sass, and F. Hutter, “SMAC3: A versatile bayesian optimization package for hyperparameter optimization,” Journal of Machine Learning Research , vol. 23, pp. 54:1–54:9, 2022. [Online]....

  31. [39]

    Available: https://doi.org/10.1162/evco a 00342

    [Online]. Available: https://doi.org/10.1162/evco a 00342

  32. [40]

    poliastro/poliastro: poliastro 0.17.0 (scipy us ’22 edition),

    J. L. C. Rodr ´ıguez, Y . Gondhalekar, A. Hidalgo, S. Bapat, N. Astrakhantsev, C. Eleftheria, K. Charls, Meu, Dani, A. Chaurasia, A. L. M ´arquez, D. Sondhi, T. Mrugalski, E. Selwood, M. L ´opez-Ib´a˜nez, O. Ousoultzoglou, P. R. Robles, G. Lindahl, S. O. Hussain, andrea carbal...

  33. [41]

    Transfer learning of surrogate models via domain affine transformation across synthetic and real- world benchmarks: Supplementary material,

    S. Pan, D. Vermetten, M. L ´opez-Ib´a˜nez, T. B ¨ack, and H. Wang, “Transfer learning of surrogate models via domain affine transformation across synthetic and real- world benchmarks: Supplementary material,” Feb. 2025. [Online]. Available: https://doi.org/10.5281/zenodo.14651837

  34. [42]

    Input warping for Bayesian optimization of non-stationary functions,

    J. Snoek, K. Swersky, R. Zemel, and R. Adams, “Input warping for Bayesian optimization of non-stationary functions,” in Proceedings of the 31st International Conference on Machine Learning , ser. Proceedings of Machine Learning Research, E. P. Xing and T. Jebara, Eds., vol. 32...

  35. [43]

    Transfer learning with affine model transformation,

    S. Minami, K. Fukumizu, Y . Hayashi, and R. Yoshida, “Transfer learning with affine model transformation,” in Advances in Neural Information Processing Systems 36: Annual Conference on Neural Information Processing Systems 2023, NeurIPS 2023, New Orleans, LA, USA, December 10 ...

  36. [2006]

    Available: https://www.worldcat.org/oclc/61285753

    [Online]. Available: https://www.worldcat.org/oclc/61285753

  37. [2022]

    Available: http://papers.nips.cc/paper files/paper/2022/ hash/cf6501108fced72ee5c47e2151c4e153-Abstract-Conference.html

    [Online]. Available: http://papers.nips.cc/paper files/paper/2022/ hash/cf6501108fced72ee5c47e2151c4e153-Abstract-Conference.html

  38. [2024]

    Available: https://doi.org/10.1109/TEVC.2022.3197427

    [Online]. Available: https://doi.org/10.1109/TEVC.2022.3197427

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.