<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem Bayesian Optimisation in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/965418#M110393</link>
    <description>&lt;P&gt;Guess the last rows are not the optimal settings, therefore I need to go to model summary and Max Desirability correct? I can see that the profiler has no simulator; when I save prediction formula and go to &amp;gt;graph &amp;gt;profiler it does not work, I get a blank profiler sheet? How to make simulations and check capability with random noise on optimized settings?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Aug 2026 16:42:14 GMT</pubDate>
    <dc:creator>frankderuyck</dc:creator>
    <dc:date>2026-08-20T16:42:14Z</dc:date>
    <item>
      <title>Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/962915#M110295</link>
      <description>&lt;P&gt;In an earlier R&amp;amp;D study I sucessfully used a 4 factor mixture DOE (3 mixture factors and one 3-level categorical "Isomer" effect) to find optimal settings for a chemical formulation with three quality attributes Y1, Y2 and Y3.&lt;/P&gt;
&lt;P&gt;I used the case in a DOE course and used simulation formulas to compute the responses Y123. Good models are obtained and optimization was straightforward and OK, see "ANALYSIS MIXTURE DOE CHEMICAL FORMULATION" in attachment.&lt;/P&gt;
&lt;P&gt;Starting from a 12 run mixture Kowalski model DOE I am struggling with&amp;nbsp; Bayesian optimization (see annex "BAYESIAN OPTIMIZATION") This keeps failing because of a very unreliable Y2 model? Why does Bayesian recommends "Max Desirability" with this very unreliable Y2 model? Starting from other screening &amp;amp; space filling DOE's&amp;nbsp; I keep getting the same unreliable Y2 model.&lt;/P&gt;
&lt;P&gt;What is the problem? How to solve?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2026 12:13:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/962915#M110295</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-05T12:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963205#M110309</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/283"&gt;@frankderuyck&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not related to your specific use case, but if you have trouble fitting a Gaussian process model based on your data using the Bayesian Optimization platform, I would recommend these two options :&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Force the exploration of your design space by creating candidate points using &lt;A href="https://www.jmp.com/support/help/en/19.1/#page/jmp/bayesian-optimization-batch-customizer.shtml#ww355534" target="_self"&gt;MaxPro criterion&lt;/A&gt;. This model-agnostic criterion ensures the maximum distance between previous existing points and the new candidate points, which allows you to cover the experimental space efficiently.&lt;/LI&gt;
&lt;LI&gt;You can also change default settings regarding the &lt;A href="https://www.jmp.com/support/help/en/19.1/#page/jmp/launch-the-bayesian-optimization-platform.shtml#" target="_self"&gt;&lt;SPAN&gt;Model Based Augmentation RSquare Threshold&lt;/SPAN&gt;&lt;/A&gt; (if you increase this threshold from 0,25 (default) to 0,7 for example, you'll increase the exploration part), and possibly adjust the correlation type (Gaussian, Mattern 3/2 and 5/2, or exponential) at the beginning of your BO loop in case one of this correlation type is more adapted to your use case. Mattern 5/2 is a good default choice, but the Gaussian one might provide slightly better results for Y2.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;In every case, the practitioner should stay in control of the platform and its outcomes, and choose the option most relevant to the situation (exploration/exploitation). I have presented a use case at a french Discovery Seminar about BO where the "auto" mode (blindly following the recommendations of the platform with the default settings) leads to suboptimal results. As soon as exploration is enforced (because of model fit inadequate and unreliable) through the addition of some exploration points, the model gets the relationships between inputs and outputs, and the exploitation can become much more interesting.&lt;BR /&gt;Looking at your response formula, what can be seen is that they are greatly different :&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Y1 has a model with main effects and interactions effects, approximately the same size (main effects slightly larger),&lt;/LI&gt;
&lt;LI&gt;Y2 has a model with main effects and some large interaction effects (X1*X3 and X2*X3)&lt;/LI&gt;
&lt;LI&gt;Y3 has a model with large main effects and some small interaction effects.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The formula formats of Y1 and Y3 are "normal" and easy to fit with a Gaussian Process. &lt;BR /&gt;For Y2, the very large interaction effects make the GP fit a lot more complex. Kernel equations involve the distance between points (see example with &lt;A href="https://www.geeksforgeeks.org/machine-learning/gaussian-kernel/" target="_blank" rel="noopener"&gt;Gaussian Kernel&lt;/A&gt;) and the bandwidth (or also called lenghtscale) parameter. This parameter is learned by the GP for each factor/dimension, and informs about how a relative change in each factor affects the response. But as the dimensions are decoupled in the distance calculations (euclidian distance) and in the learning of this parameter, the GP model has hard times figuring out a reasonable bandwidth/lenghtscale parameter for each factor involved in a strong interaction, as it cannot evaluate well how each factor independantly affect the response.&lt;BR /&gt;In practice, when faced with a similar situation of very large interactions effects possible, an additive or polynomial kernel would be more suited, as the additive kernel decouples 1st-order, 2nd-order, 3rd order ... effects, and a polynomial kernel is explicitly set up to a fixed degree (in this case 2 or 3).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Given the options of the JMP Bayesian Optimization platform, I would recommend forcing the platform to generate more exploration points with MaxPro criterion. Please find attached my test, forcing 4 new exploration runs with MaxPro criterion before letting the platform optimize with Maximize expected Improvement option. The optimum found seems to be closer to your objectives than the one you obtain.&lt;/P&gt;
&lt;P&gt;Hope this answer will help you,&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2026 07:53:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963205#M110309</guid>
      <dc:creator>Victor_G</dc:creator>
      <dc:date>2026-08-07T07:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963215#M110311</link>
      <description>&lt;P&gt;Thanks for indepth explanation Victor, however there still are issues:&lt;/P&gt;
&lt;P&gt;(1) the Y2 profiler shows that the Y2 model still is very unreliable. (2)&amp;nbsp; Important(!): the optimal setting here for Isomer = Isomer 2 which does not correspond with the DOE - and correct - solution that must be Isomer 1.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hard to understand why Bayesion is struggling here..&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2026 08:41:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963215#M110311</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-07T08:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963216#M110312</link>
      <description>&lt;P&gt;I was seeing R2 values close or above 0,7 for Y2 so I wouldn't say the model is very unreliable ?&lt;BR /&gt;Bayesian Optimization will not always provide you the global optimum (if existing), but an optimal solution.&lt;BR /&gt;Since mixture designs are optimization designs and your categorical isomer factor has not large effect relatively to the mixture factors, there might be other solutions available with different isomer (and different mixture ratios). There could be several explanations to understand the differences : several optima available with similar good performances, and/or the noise added to Y2 could "hide" the optimum to the GP model. You could try removing the noise from the Y2 formula and see if the optimum is the same, as well as checking with the model from the DoE how close the BO solutions are from the optimum you have in the DoE context.&lt;/P&gt;
&lt;P&gt;Hope this answer will help you,&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2026 09:10:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963216#M110312</guid>
      <dc:creator>Victor_G</dc:creator>
      <dc:date>2026-08-07T09:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963220#M110313</link>
      <description>&lt;P&gt;Profiler Y2 does not look good; DOE model was excellent&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="frankderuyck_0-1786094852833.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112262iB7D3F3957E783A89/image-size/medium?v=v2&amp;amp;px=400" alt="frankderuyck_0-1786094852833.png" title="frankderuyck_0-1786094852833.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2026 09:28:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963220#M110313</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-07T09:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963228#M110314</link>
      <description>&lt;P&gt;After some extra runs, Bayesian consistently yields the optimal Isomer 1 solution, the Y2 profiler remains very grey.&lt;/P&gt;
&lt;P&gt;Solution is quite equivalent to what I got, my Y2 R² was lower = 0,52.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2026 09:46:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963228#M110314</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-07T09:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963229#M110315</link>
      <description>&lt;P&gt;The Y2 profiler tells me that one can expect -0,48 &amp;lt; Y2 &amp;lt; 1 correct? Should one&amp;nbsp; ingnore this result and only look at R²?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2026 09:52:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963229#M110315</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-07T09:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963350#M110326</link>
      <description>&lt;P&gt;Looking at your BO file, when opening the JMP BO platform, I have a R² = 0,7999 and a Profiler not so bad for Y2:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_0-1786175430051.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112364i2A839CBB0FF0845D/image-size/medium?v=v2&amp;amp;px=400" alt="Victor_G_0-1786175430051.png" title="Victor_G_0-1786175430051.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Same results on my BO file test : R² = 0,7321 and Profiler seems ok:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_1-1786175585108.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112365iE966323FC306DDA5/image-size/medium?v=v2&amp;amp;px=400" alt="Victor_G_1-1786175585108.png" title="Victor_G_1-1786175585108.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So which Profiler or at which step are you showing the "bad" Prediction Profiler ?&lt;/P&gt;
&lt;P&gt;You could add some runs using the Maximize Multivariate Model Std Dev (or Maximize Bayesian Desirability Std Dev if the batch size is larger than one) to reduce the prediction uncertainty. This can help, but due to this extreme scenario with very large interaction effects, it will be hard for the Gaussian Process to compete with the multivariate regression from the DoE with interaction effects included. You can take a look at how each model handle interaction through the option "Overlaid Interactions" ; you'll see that the interaction traces for (DoE) regression model are far more "diverse" than the ones from Gaussian Process, due to the limitation I explained in my first post.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Regression model:&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_2-1786175872322.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112366i82B6BABCB6A6059C/image-size/medium?v=v2&amp;amp;px=400" alt="Victor_G_2-1786175872322.png" title="Victor_G_2-1786175872322.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;Gaussian Process:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_3-1786175927453.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112367i75E25E2D7D015E80/image-size/medium?v=v2&amp;amp;px=400" alt="Victor_G_3-1786175927453.png" title="Victor_G_3-1786175927453.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The Gaussian Process interpolates the behavior of the response based on the proximity of the points, whereas the regression uses specific effects (main effects, interaction effects, etc...) to describe the phenomenon. The model fitting and "philosophy" is different: assume a model to be verified for regression, whereas with GP you "build the model as you experiment".&lt;/P&gt;
&lt;P&gt;Note that even if you're using Bayesian Optimization platform, if you encounter difficulties fitting the GP model even with the addition of exploration points, you can explore more model options using the platform &lt;A href="https://www.jmp.com/support/help/en/19.1/#page/jmp/model-screening.shtml" target="_blank" rel="noopener"&gt;Model Screening&lt;/A&gt;&amp;nbsp;with K-folds crossvalidation, and you'll see that regression methods appear at the top of the best model fitting options (here are the results using only the first construction points of your data table) :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_4-1786176393503.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112368i4114CAF0B4C4A41B/image-size/medium?v=v2&amp;amp;px=400" alt="Victor_G_4-1786176393503.png" title="Victor_G_4-1786176393503.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this answer may still help you,&lt;/P&gt;</description>
      <pubDate>Sat, 08 Aug 2026 08:11:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963350#M110326</guid>
      <dc:creator>Victor_G</dc:creator>
      <dc:date>2026-08-08T08:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963489#M110327</link>
      <description>&lt;P&gt;Strange, when I click on last BO test I get a different result for the prediction profiler, the plots are the same.&lt;/P&gt;
&lt;P&gt;I am using JMP 18 Pro, could it be that version 19 - I suppose that you use the last JMP version - is different?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="frankderuyck_0-1786349462076.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112502i82402F8BB9D42B09/image-size/medium?v=v2&amp;amp;px=400" alt="frankderuyck_0-1786349462076.png" title="frankderuyck_0-1786349462076.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2026 08:17:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963489#M110327</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-10T08:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963596#M110333</link>
      <description>&lt;P&gt;Ok that's strange, you should have the same profiler since the Actual by Predicted plot seems to show the GP model has learned the patterns in your data.&lt;/P&gt;
&lt;P&gt;Have you the same Profiler results when looking at the model panel for Y2 response only in JMP BO platform ?&lt;BR /&gt;Have you tried using the "normal" Gaussian Process platform for modeling to see if you have the same problem ?&lt;BR /&gt;Have you tried re-run the platform directly from the menu (not from the saved scripts) and from the scripts ? Any differences ?&lt;/P&gt;
&lt;P&gt;Finally, are you able to update to JMP 19 ? &lt;BR /&gt;&lt;BR /&gt;Hope you'll be able to solve your problem with some of these ideas,&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2026 18:00:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963596#M110333</guid>
      <dc:creator>Victor_G</dc:creator>
      <dc:date>2026-08-10T18:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963696#M110335</link>
      <description>&lt;P&gt;Hi Victor, I have tried your proposals with my JMP 18 without succes. Find in attachment a comparison between Scheffé &amp;amp; Gaussian modeling for the full 24 run DOE results: Gaussian modeling is not good showing lack of fit for Y1, very poor results for Y2; Y3 is acceptable; with these gaussian models it is impossible to find optimal mixture settings with profiler, Desirability = 0. Do you get better results with JMP 19? Hopefully a solution can be found, very much I would like to use Bayesian optimisation but my team is getting sceptical..&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2026 07:07:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963696#M110335</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-11T07:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963706#M110336</link>
      <description>&lt;P&gt;The results from Gaussian prediction formula are very bad and different from Jacknife predictions??&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="frankderuyck_0-1786435375218.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112615i3CA2D418AA0A08C2/image-size/medium?v=v2&amp;amp;px=400" alt="frankderuyck_0-1786435375218.png" title="frankderuyck_0-1786435375218.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;No wonder why my Bayesian optimisation does not work, very inconsistant and unstable results..&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2026 08:05:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963706#M110336</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-11T08:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963707#M110337</link>
      <description>&lt;P&gt;If results with JMP 19 are OK, what has changed?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2026 08:07:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963707#M110337</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-11T08:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963817#M110341</link>
      <description>&lt;P&gt;I have used the BO platform in JMP 19 with default settings, and the models for the different responses seem good:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_0-1786477092346.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112662i96465A8F39AE4B8D/image-size/medium?v=v2&amp;amp;px=400" alt="Victor_G_0-1786477092346.png" title="Victor_G_0-1786477092346.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I have saved the prediction formula and script from the Bayesian Optimisation platform (Gaussian Process model) from JMP19 in your table.&lt;/P&gt;
&lt;P&gt;Concerning the "basic" Gaussian Process models, I have similar results for Y1, but you can improve the modeling by checking the option "&lt;A href="https://www.jmp.com/support/help/en/19.1/#page/jmp/launch-the-gaussian-process-platform.shtml" target="_self"&gt;Estimate nugget parameter&lt;/A&gt;" when launching the platform:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_1-1786477388650.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112663iC788016D1BDE2367/image-size/medium?v=v2&amp;amp;px=400" alt="Victor_G_1-1786477388650.png" title="Victor_G_1-1786477388650.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;As the response Y1 seems to be a bit more noisy than the others, using this option improve the modeling by avoiding the Gaussian Process to perfectly interpolating the data. The model's results are much more interpretable and similar to the regression model, even if the model's predictions can be far from the measurements:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Victor_G_2-1786477805428.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112665i952BC786C2BC34AA/image-size/medium?v=v2&amp;amp;px=400" alt="Victor_G_2-1786477805428.png" title="Victor_G_2-1786477805428.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I have also saved the script to re-run the analysis and the prediction formula in your table.&lt;/P&gt;
&lt;P&gt;Finally, Gaussian Process prediction formula and Jackknife prediction formula are different, you can read the JMP Help&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/19.1/#page/jmp/actual-by-predicted-plot-2.shtml#" target="_blank"&gt;Actual by Predicted Plot&lt;/A&gt;. Jackknife prediction values are predicted Y values for the specific X row excluded, whereas the Gaussian Process model prediction values come from the averaging of each models trained with Leave-One-Out validation (Jackknife method).&lt;/P&gt;
&lt;P&gt;Hope this answer will help you,&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2026 20:06:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963817#M110341</guid>
      <dc:creator>Victor_G</dc:creator>
      <dc:date>2026-08-11T20:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963854#M110343</link>
      <description>&lt;P&gt;OK Victor, thanks, that's clear I need to switch to JMP 19, I wonder why JMP 18 does not work and what has changed? By the way when I add another BO batch my 18 version gives an error and when I ignore this Y2 prediction is again competely blurred grey like before&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="frankderuyck_0-1786523679953.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112691iAB078003CEA6F3D5/image-size/medium?v=v2&amp;amp;px=400" alt="frankderuyck_0-1786523679953.png" title="frankderuyck_0-1786523679953.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="frankderuyck_1-1786523771369.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112692i1070880E6C4D384E/image-size/medium?v=v2&amp;amp;px=400" alt="frankderuyck_1-1786523771369.png" title="frankderuyck_1-1786523771369.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Could you carry out this Bayesian optimisation from attached starting DOE based on a 12 run Kowalski model?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2026 08:44:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/963854#M110343</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-12T08:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964028#M110349</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/283"&gt;@frankderuyck&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;out of curiosity - where in JMP 18 do you have access to Bayesian Optimization? It was only introduced in JMP 19:&amp;nbsp;&lt;A href="https://www.jmp.com/en/software/new-release/new-in-jmp" target="_blank"&gt;https://www.jmp.com/en/software/new-release/new-in-jmp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;Florian&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2026 15:52:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964028#M110349</guid>
      <dc:creator>Florian_Vogt</dc:creator>
      <dc:date>2026-08-12T15:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964041#M110351</link>
      <description>&lt;P&gt;Sorry I was wrong, I am using version 19.0.1&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="frankderuyck_0-1786550520590.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112740i4B1B4890837A80F1/image-size/medium?v=v2&amp;amp;px=400" alt="frankderuyck_0-1786550520590.png" title="frankderuyck_0-1786550520590.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2026 16:02:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964041#M110351</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-12T16:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964042#M110352</link>
      <description>&lt;P&gt;So why are my results different from Victor?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2026 16:04:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964042#M110352</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-12T16:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964148#M110360</link>
      <description>&lt;P&gt;Good Morning&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/283"&gt;@frankderuyck&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/11568"&gt;@Victor_G&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can confirm that some of the improvements in the latest release solve the problem:&lt;/P&gt;
&lt;P&gt;Before JMP 19.1.4:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Florian_Vogt_0-1786605432509.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112808i6844ED52CF3F01E8/image-size/medium?v=v2&amp;amp;px=400" alt="Florian_Vogt_0-1786605432509.png" title="Florian_Vogt_0-1786605432509.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;With JMP 19.1.4 (current latest release):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Florian_Vogt_1-1786605459011.png"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/112809i79371184482493C1/image-size/medium?v=v2&amp;amp;px=400" alt="Florian_Vogt_1-1786605459011.png" title="Florian_Vogt_1-1786605459011.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Updating to the latest release includes improvements to the platform giving better results (as Victor showed).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;Florian&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2026 07:18:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964148#M110360</guid>
      <dc:creator>Florian_Vogt</dc:creator>
      <dc:date>2026-08-13T07:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Bayesian Optimisation</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964150#M110361</link>
      <description>&lt;P&gt;Thanks Florian, how to upgrade to latest version?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2026 08:01:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-Bayesian-Optimisation/m-p/964150#M110361</guid>
      <dc:creator>frankderuyck</dc:creator>
      <dc:date>2026-08-13T08:01:29Z</dc:date>
    </item>
  </channel>
</rss>

