フィルターのクリア

How to get the mathematical equation of a model trained using Regression learner toolbox

8 ビュー (過去 30 日間)
Sirish Selvam
Sirish Selvam 2022 年 4 月 9 日
回答済み: Ravi 2023 年 12 月 21 日
I have created an SVM model using the regression learner. I have exported the trained model as well. How do I get the mathematical equation behind the model, that has all the coefficients and parameters that have been computed in the process of training?
  2 件のコメント
Ive J
Ive J 2022 年 4 月 15 日
Not possible. The best you can get is the model object itself, and use predict method to predict over a new set of predictors.
Nathan Williams
Nathan Williams 2022 年 7 月 28 日
That is ridiculous. How is running a .m function preferable to executing a mathematical equation?

サインインしてコメントする。

回答 (1 件)

Ravi
Ravi 2023 年 12 月 21 日
Hi Sirish Selvam,
I understand that you want to find the mathematical equation of the trained SVM model. Unfortunately, the mathematical equation of SVM is quite complex unlike the linear regression models.
There is no direct way to obtain the mathematical equation of the trained SVM, but you can still obtain the parameters, coefficients and bias term of the support vector machine model trained by accessing the model properties.
Let us assume the model trained is “svm_model”. We can access the support vectors, coefficients, and bias term as follows.
% Extract support vectors and coefficients
supportVectors = svm_model.SupportVectors;
coefficients = svm_model.Alpha;
% Extract bias term (if present)
bias = svm_model.Bias;
To learn more about the SVM model and its properties, please refer to the following link.
I hope this solution resolves the issue you are facing.
Thanks,
Ravi Chandra

カテゴリ

Help Center および File ExchangeSupport Vector Machine Regression についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by