libsvm Shrinking Heuristics

前端 未结 1 1907
我寻月下人不归
我寻月下人不归 2021-02-07 06:25

I\'m using libsvm in C-SVC mode with a polynomial kernel of degree 2 and I\'m required to train multiple SVMs. During training, I am getting either one or even both of these war

相关标签:
1条回答
  • 2021-02-07 07:13

    The shrinking heuristics are there to speed up the optimization. As it says in the FAQ, they sometimes help, and sometimes they do not. I believe it's a matter of runtime, rather than convergence.

    The fact that the optimization reaches the maximum number of iterations is interesting, though. You might want to play with the tolerance (cost parameter), or have a look at the individual problems that cause this. Are the datasets large?

    0 讨论(0)
提交回复
热议问题