Can the predicted function (equation) created by the regression learner toolbox be output?
이전 댓글 표시
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
Sadaf Batool
2020년 12월 19일
편집: Sadaf Batool
2020년 12월 19일
Hey @Scott,
Were you able to get the equation from the trained model?
Scott
2020년 12월 21일
답변 (1개)
Carl
2017년 7월 24일
0 개 추천
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
Scott
2017년 7월 26일
Carl
2017년 7월 26일
Thanks for the follow up. In this case, my recommendation would be to upgrade to MATLAB R2017b and use MATLAB Coder. The predict method of RegressionGP will be fully supported for code generation with MATLAB Coder in R2017b. This will let you directly generate C++ code, without having to manually rewrite the function.
R2017b has not yet been released, but follow the link here for instructions on getting the R2017b prerelease: https://www.mathworks.com/matlabcentral/answers/101155-how-do-i-obtain-a-prerelease-for-a-new-matlab-version
Please keep in mind that the prerelease versions of MATLAB are only available to users with valid SMS (software maintenance service).
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.
YiHao Zhu
2018년 2월 6일
I want to use matlab coder to let my machine learning model in workspace to a function with c++ code.
카테고리
도움말 센터 및 File Exchange에서 Discriminant Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!