Cross validation for machine learning

2 次查看(过去 30 天)
Where would I be able to find a cross validation code? I don't have statistics toolbox and I neeed to do cross validation for machine learning. Need help thanks!!!

采纳的回答

Shashank Prasanna
Shashank Prasanna 2013-1-21
What type of machine learning are you doing? Cross validation is fairly straightforward, all you need to do is use some random part of your data for training and other part of the data for testing and you may do this several times. A popular method is called leave-one-out. Where you divide your data into several chunks and use all except one to train and the last one to test.
There is no special code required, if you have your training and testing methods ready, its just about how you partition and provide data to these function.
Take a look at the other common types of cross validation methods:
Of course if you have Stats toolbox, they have a function that can take your training function as input and itself splits the data for you, but its not really that much of an effort to do it.
  1 个评论
Lester Lim
Lester Lim 2013-1-22
I recall it as cvpartition and crossvalind for statistical toolbox. I am currently doing supervised machine learning and I have only found a cross validation method which calculated the mean square error. How may I derive the accuracy from it?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by