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

机器算法验证 r 支持向量机 优化
2022-03-03 05:57:05

我试图了解训练线性支持向量机的过程。我意识到 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()

在此处输入图像描述

找到最大边距超平面

根据这篇关于支持向量机的维基百科文章,找到我需要解决的最大边距超平面

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

如何将我的样本数据“插入”到 R 中的 QP 求解器(例如quadprog)以确定w

2个回答

按照rightskewed的提示...

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)))

在此处输入图像描述

提示

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