Is there a scaling function in SVMlight?

206 Views Asked by At

The LIBSVM guide states that data sets should be scaled to a certain range before running SVM on them. In Appendix B of the guide, they show a LIBSVM function svm-scale that does the scaling. Is there an equivalent function for SVMlight?

1

There are 1 best solutions below

3
lennon310 On BEST ANSWER

Unfortunately no. You have to standardize the data by yourself. Just keep in mind that use the mean and std of training data in test data scaling.