Matlab中的svm预测

时间:2019-07-31 04:59:15

标签: svm prediction

我使用Matlab示例通过SVM预测数据。 但我有一些问题。我该如何克服这个错误? 我的数据集在这里:http://www.sharefile.ir/uploads/1564570470.rar

我替换了自己的数据,我想尝试预测数据中的参数。

clc;
clear;
close all;

load Data_NASA
t= linspace(1,789,789);
tbl = Data(:,1);
N = size(tbl,1);
rng(10); % For reproducibility
cvp = cvpartition(N,'Holdout',0.1);
idxTrn = training(cvp); % Training set indices
idxTest = test(cvp);    % Test set indices
Mdl = fitrsvm(tbl(idxTrn,:),'Standardize',true);
YFit = predict(Mdl,tbl(idxTest,:));
table(tbl,YFit,'VariableNames',...
    {'ObservedValue','PredictedValue'})

0 个答案:

没有答案