For example the file heart_scale provided with the libsvm package. Do I need to make such files for training and testing? If yes how and on what basis?
first you take a decision that how many of all data is test and how many of them is test! of course you can use -v in libsvm and work with n-fold cross validation!
first you take a decision that how many of all data is test and how many of them is test! of course you can use -v in libsvm and work with n-fold cross validation!
Thank you Mr.Mohsen Biglari. Each file should conatin exactly one object's features individually or the training/testing file would contain all the objects features but separated via lines?
You need to divide your data into training subset and testing subset which mean you must to use two files; one for the training subset and the other for the testing subset. The most common way to divide your data into training subset and testing subset is by using k-fold cross validation with usually k = 5.