I want to classify using libsvm. I have 9 training sets, each set has 144,000 marked instances, each instance has a variable number of functions. It takes about 12 hours to train one set (./svm-train with probabilistic estimates). Since I don't have much time, I would like to run more than one set at a time. I'm not sure if I can do this. Can I run all 9 processes simultaneously on different terminals?
./svm-train -b 1 feat1.txt
./svm-train -b 1 feat2.txt
.
.
.
./svm-train -b 1 feat9.txt
(I am using fedora 5 core)
source
share