how to do cross-validation without built-in function in excel data

2 次查看(过去 30 天)
i am studying about different classifires and i like to know how to do cross-validation without built-in function.i am using iris dataset for practise?
  1 个评论
Saket Chirania
Saket Chirania 2020-6-3
There is inbuild function named, crossvalind, which helps to perform diffrent cross validation methods such as Kfold, HoldOut, etc.
However, you can import your data to the MATLAB workspace using readmatrix function from the excel data.
Consider, you want to perform 5 cross folds.
  • 1st fold : 1 2 for test, 3:10 for train
  • 2nd fold : 3 4 for test, 1 2 5:10 for train
  • 3rd fold : 5 6 for test, 1:4 7:10 for train
  • 4th fold : 7 8 for test, 1:6 9:10 for train
  • 5th fold : 9 10 for test, 1:8 for train
Following code is an example for this process:
data = readmatrix('IrisData.xls');
dataRowNumber = size(data,1);
labels= rand(dataRowNumber,1) > 0.5;
randomColumn = rand(dataRowNumber,1);
X = [ randomColumn data labels];
SortedData = sort(X,1);
crossValidationFolds = 5;
numberOfRowsPerFold = dataRowNumber / crossValidationFolds;
crossValidationTrainData = [];
crossValidationTestData = [];
for startOfRow = 1:numberOfRowsPerFold:dataRowNumber
testRows = startOfRow:startOfRow+numberOfRowsPerFold-1;
if (startOfRow == 1)
trainRows = [max(testRows)+1:dataRowNumber];
else
trainRows = [1:startOfRow-1 max(testRows)+1:dataRowNumber];
end
crossValidationTrainData = [crossValidationTrainData ; SortedData(trainRows ,:)];
crossValidationTestData = [crossValidationTestData ;SortedData(testRows ,:)];
end

请先登录,再进行评论。

回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by