libsvm 中使用的求解器
Solver used in libsvm
我在 Matlab 中使用 libsvm。
谁能告诉我 libsvm 默认使用哪个求解器?
我正在使用线性内核和 C-SVC。
从他们的常见问题解答(有人问如何切换到 L2-loss - 他们建议修改代码)我认为他们使用的是 L2-正则化 L1-loss。对吗?
谢谢。
你应该看看第 4 章中的 implementation documentation:
This section discusses algorithms used in LIBSVM to solve dual
quadratic problems listed in Section 2. We split the discussion to two
parts. The first part considers optimization problems with one linear
constraint, while the second part checks those with two linear
constraints. [...]
我在 Matlab 中使用 libsvm。
谁能告诉我 libsvm 默认使用哪个求解器?
我正在使用线性内核和 C-SVC。
从他们的常见问题解答(有人问如何切换到 L2-loss - 他们建议修改代码)我认为他们使用的是 L2-正则化 L1-loss。对吗?
谢谢。
你应该看看第 4 章中的 implementation documentation:
This section discusses algorithms used in LIBSVM to solve dual quadratic problems listed in Section 2. We split the discussion to two parts. The first part considers optimization problems with one linear constraint, while the second part checks those with two linear constraints. [...]