How to develop regression function (Mathmatical form) from trained model using regression learner?
2 ビュー (過去 30 日間)
古いコメントを表示
Manoj kumar Beriya
2021 年 2 月 15 日
コメント済み: Manoj kumar Beriya
2021 年 2 月 18 日
How to extract regression function in term of mathmatical form (or tool or excel sheet) from trained model using regression learner (Support Vector Regression).
0 件のコメント
採用された回答
Aditya Patil
2021 年 2 月 18 日
In case of support vector machines(both for classification and regression), the score function/regression function might not be in terms of input predictors, hence it might not be possible to get the regression function. The coefficients can be obtained using
trainedModel.RegressionSVM
As a workaround, you can use other regression techniques such as linear regression, which derive output in terms of predictors.
5 件のコメント
Aditya Patil
2021 年 2 月 18 日
編集済み: Aditya Patil
2021 年 2 月 18 日
You can export the model, and create a function that takes in a value, calls the predict function, and returns the output. Then call this function from excel using matlabfcn.
If you need further help, feel free to create a new question, as that would reach out to more people.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!