Can the predicted function (equation) created by the regression learner toolbox be output?

10 次查看(过去 30 天)
I have created a trained model GPR (RegressionGP,matern52) and have tested it using the predictFcn. Is there any way I can look at the final equation and associated parameters so that it can be incorporated into c++ code? Or do I have to find a similar c++ library or python machine learning library and try to duplicate my results (using a similar Gaussian Process Model)?
  2 个评论
Scott
Scott 2020-12-21
No. As Carl states below, I was able to get the final Hyperparameters, but not the equation(s). To incorporate into C++ code I duplicated the analysis in Python using scikit-learn using the aforementioned Hyperparameters and similar GPR model. It is very easy deploy and integrate Python machine learning models using "pickle" file and "SimpleXMLRPCServer" function. The matlab "coder" is another expensive Matlab add on that looked difficult to deploy with C++ code. My solution took a day or so. Scott.

请先登录,再进行评论。

回答(1 个)

Carl
Carl 2017-7-24
You can extract the final parameters and equation from the GPR model's properties. See the following page:
You can obtain the values of beta, sigma, the hyperparameters, and other properties. Let me know if this doesn't provide what you are specifically looking for.
  4 个评论
YiHao Zhu
YiHao Zhu 2018-2-6
After I use regression learner and export the model to the workspace, I can use it to train my new data in matlab. But when I try to use matlab coder to develop c++ code, it fail. Really need a video to show me how to do it.

请先登录,再进行评论。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by