Getting different results training on the same datasets each time
11 views (last 30 days)
Show older comments
I'm using 'fitrgp' to train my GPR model. I've specified hyperparameters I'd like it to optimize, but I'm getting slightly different results each time I train it on the same dataset. I know this is a feature of ML in general, but I'd like to know if there's any way to get a reproducible result each time.
I'm already using rng("default") and using the "expected-improvement-plus" acquisition function to improve the reproducibility.
I'd really appreciate any insight into if this is possible!
3 Comments
the cyclist
on 5 Aug 2023
Sorry I did not see this reply earlier.
This documentation discusses reproducibility in parallel computations. It seems to have some distinct recommendations from the page you linked.
Accepted Answer
Ayush Anand
on 29 Aug 2023
Edited: Ayush Anand
on 29 Aug 2023
Hi Katy,
I understand that you are doing Gaussian process regression and getting slightly different results every time, you train the model on the same dataset.
The code that you posted shows that you are using parallel computation option while training. Since MATLAB parallel computing toolbox is inherently non-deterministic in nature, generally it is not sought out when reproducible results are required, and serialization is preferred.
In this case, for producing serialized results, you can set “UseParallel” to false and keep the “rng(“default”)” statement. This disables parallel computations and setting the seed to default every time ensures reproducible results.
The MathWorks Documentation linked below is referring to a workaround to produce reproducible results with parallel computing toolbox, but it doesn’t seem to be possible to inculcate this with the “fitrgp” function:
Also, as you mentioned in the question, most of the ML algorithms (including Gaussian Process regression) inherently have some randomness due to re-initializations and samplings, so you are bound to get slightly different results.
I hope this helps.
0 Comments
More Answers (0)
See Also
Categories
Find more on Gaussian Process Regression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!