문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top