How to use a cross validation test with MATLAB?

纵然是瞬间 提交于 2019-12-06 03:49:57

In Statistics Toolbox there is CROSSVAL function, which performs 10-fold cross validation by default. Check it out.

Another function CROSSVALIND exists in Bioinformatics Toolbox.

Also there is an open source Generic-CV tool: http://www.cs.technion.ac.il/~ronbeg/gcv/

If you would rather write your own xval wrapper rather than using built-in functions, I often use randperm() to generate random orderings of my data, which you can then partition using a 90% (or your favorite value) cutoff point.

Let's say you want to perform 10-fold cross-validation for regularized least squares.

% Given X and y, where y = X*beta + noise. 
lambda_range = 0:0.5:10;
cv_MSE = zeros(size(lambda_range));
for i = 1:length(lambda_range)
   regf=@(X,y,Xtest)(Xtest*(inv(X'*X+lambda_range(i)*eye(size(X,2)))*X'*y));
   cv_MSE(i) = crossval('mse',X,y,'Predfun',regf,'kfold',10);
end
[~,idx]= min(cv_MSE);
lambda = lambda_range(idx); 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!