フィルターのクリア

Is there a way to get a confidence/probability score on fitrsvm or other regression techniques like fitrensemble using the 'predict' function?

3 ビュー (過去 30 日間)
Is there a way to get a confidence/probability score on fitrsvm or other regression techniques like fitrensemble using the 'predict' function? I know that it exists for fitcsvm (predict returns class probability), so I am looking for a similar function for the regresssion twechniques.

回答 (1 件)

Ive J
Ive J 2021 年 7 月 11 日
You already answered yourself!
% MATLAB doc for fitrsvm
load carsmall
X = [Horsepower,Weight];
Y = MPG;
Mdl = fitrsvm(X,Y);
% predict with new data
Xnew = randn(size(X));
Ynew = Mdl.predict(Xnew);
For other regression functions, you can do similarly. Also, you can easily check the methods available for objects from leaners:
ismethod(Mdl, 'predict') % true

カテゴリ

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

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by