Classification training using libsvm

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)

+3
source share
3 answers
+3

Yes. But if you do not have a multi-core or multi-processor system, this may not save you a lot of time.

+2
source

Source: https://habr.com/ru/post/1736267/


All Articles