用二次规划优化支持向量机


12

我正在尝试了解训练线性支持向量机的过程。我意识到,与使用二次编程求解器相比,SMV的属性可以更快地对其进行优化,但是出于学习目的,我希望了解其工作原理。

训练数据

set.seed(2015)
df <- data.frame(X1=c(rnorm(5), rnorm(5)+5), X2=c(rnorm(5), rnorm(5)+3), Y=c(rep(1,5), rep(-1, 5)))
df
           X1       X2  Y
1  -1.5454484  0.50127  1
2  -0.5283932 -0.80316  1
3  -1.0867588  0.63644  1
4  -0.0001115  1.14290  1
5   0.3889538  0.06119  1
6   5.5326313  3.68034 -1
7   3.1624283  2.71982 -1
8   5.6505985  3.18633 -1
9   4.3757546  1.78240 -1
10  5.8915550  1.66511 -1

library(ggplot2)
ggplot(df, aes(x=X1, y=X2, color=as.factor(Y)))+geom_point()

在此处输入图片说明

寻找最大余量超平面

根据有关SVM的Wikipedia文章,要找到我需要解决的最大余量超平面

argmin(w,b)12w2
满足(对于任何i = 1,...,n)
yi(wxib)1.

如何将示例数据“插入” R中的QP求解器(例如,quadprog)以确定?w


您必须解决双重问题

2
您可以详细说明@fcop吗?在这种情况下,对偶是什么?我该如何解决R?等
2015年

Answers:


6

提示

Quadprog解决了以下问题:

minxdTx+1/2xTDxsuch that ATxx0

考虑

x=(wb)and D=(I000)

在那里是单位矩阵。I

如果是 且是:wp×1yn×1

x:(2p+1)×1D:(2p+1)×(2p+1)

在类似的行上:

x0=(11)n×1

制定使用上面的提示来代表你的不等式约束。A


1
我迷路了。什么是?dT
2015年

1
在目标函数中的系数是多少?不是而是?w||w||22w
rightkewed

1
感谢帮助。我以为我知道了,但是当我设置D =矩阵时,您建议quadprog返回错误“二次函数中的矩阵D不是正定的!”
2015年

3
HACK:扰动 通过添加一个小的值的发言权上对角线D1e6
rightskewed

7

遵循rightkewed的提示...

library(quadprog)

# min(−dvec^T b + 1/2 b^T Dmat b) with the constraints Amat^T b >= bvec)
Dmat       <- matrix(rep(0, 3*3), nrow=3, ncol=3)
diag(Dmat) <- 1
Dmat[nrow(Dmat), ncol(Dmat)] <- .0000001
dvec       <- rep(0, 3)
Amat       <- as.matrix(df[, c("X1", "X2")])
Amat <- cbind(Amat, b=rep(-1, 10))
Amat <- Amat * df$Y
bvec       <- rep(1, 10)
solve.QP(Dmat,dvec,t(Amat),bvec=bvec)

plotMargin <- function(w = 1*c(-1, 1), b = 1){
  x1 = seq(-20, 20, by = .01)
  x2 = (-w[1]*x1 + b)/w[2]
  l1 = (-w[1]*x1 + b + 1)/w[2]
  l2 = (-w[1]*x1 + b - 1)/w[2]
  dt <- data.table(X1=x1, X2=x2, L1=l1, L2=l2)
  ggplot(dt)+geom_line(aes(x=X1, y=X2))+geom_line(aes(x=X1, y=L1), color="blue")+geom_line(aes(x=X1, y=L2), color="green")+
    geom_hline(yintercept=0, color="red")+geom_vline(xintercept=0, color="red")+xlim(-5, 5)+ylim(-5, 5)+
    labs(title=paste0("w=(", w[1], ",", w[2], "), b=", b))
}

plotMargin(w=c(-0.5065, -0.2525), b=-1.2886)+geom_point(data=df, aes(x=X1, y=X2, color=as.factor(Y)))

在此处输入图片说明

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.