支持向量机(Support Vector Machine, SVM)是一类按监督学习(supervised learning)方式对数据进行二元分类(binary classification)的广义线性分类器(generalized linear classifier),其决策边界是对学习样本求解的最大边距超平面(maximum-margin hyperplane) 。

SVM使用铰链损失函数(hinge loss)计算经验风险(empirical risk)并在求解系统中加入了正则化项以优化结构风险(structural risk),是一个具有稀疏性和稳健性的分类器 。SVM可以通过核方法(kernel method)进行非线性分类,是常见的核学习(kernel learning)方法之一  。

SVM被提出于1964年,在二十世纪90年代后得到快速发展并衍生出一系列改进和扩展算法,在人像识别(face recognition)、文本分类(text categorization)等模式识别(pattern recognition)问题中有得到应用。

机器学习实战源码:

'''
Created on Nov 4, 2010
Chapter 5 source file for Machine Learing in Action
@author: Peter
'''
from numpy import *
from time import sleepdef loadDataSet(fileName):dataMat = []; labelMat = []fr = open(fileName)for line in fr.readlines():lineArr = line.strip().split('\t')dataMat.append([float(lineArr[0]), float(lineArr[1])])labelMat.append(float(lineArr[2]))return dataMat,labelMatdef selectJrand(i,m):j=i #we want to select any J not equal to iwhile (j==i):j = int(random.uniform(0,m))return jdef clipAlpha(aj,H,L):if aj > H:aj = Hif L > aj:aj = Lreturn ajdef smoSimple(dataMatIn, classLabels, C, toler, maxIter):dataMatrix = mat(dataMatIn); labelMat = mat(classLabels).transpose()b = 0; m,n = shape(dataMatrix)alphas = mat(zeros((m,1)))iter = 0while (iter < maxIter):alphaPairsChanged = 0for i in range(m):fXi = float(multiply(alphas,labelMat).T*(dataMatrix*dataMatrix[i,:].T)) + bEi = fXi - float(labelMat[i])#if checks if an example violates KKT conditionsif ((labelMat[i]*Ei < -toler) and (alphas[i] < C)) or ((labelMat[i]*Ei > toler) and (alphas[i] > 0)):j = selectJrand(i,m)fXj = float(multiply(alphas,labelMat).T*(dataMatrix*dataMatrix[j,:].T)) + bEj = fXj - float(labelMat[j])alphaIold = alphas[i].copy(); alphaJold = alphas[j].copy();if (labelMat[i] != labelMat[j]):L = max(0, alphas[j] - alphas[i])H = min(C, C + alphas[j] - alphas[i])else:L = max(0, alphas[j] + alphas[i] - C)H = min(C, alphas[j] + alphas[i])if L==H: print("L==H"); continueeta = 2.0 * dataMatrix[i,:]*dataMatrix[j,:].T - dataMatrix[i,:]*dataMatrix[i,:].T - dataMatrix[j,:]*dataMatrix[j,:].Tif eta >= 0: print("eta>=0"); continuealphas[j] -= labelMat[j]*(Ei - Ej)/etaalphas[j] = clipAlpha(alphas[j],H,L)if (abs(alphas[j] - alphaJold) < 0.00001): print("j not moving enough"); continuealphas[i] += labelMat[j]*labelMat[i]*(alphaJold - alphas[j])#update i by the same amount as j#the update is in the oppostie directionb1 = b - Ei- labelMat[i]*(alphas[i]-alphaIold)*dataMatrix[i,:]*dataMatrix[i,:].T - labelMat[j]*(alphas[j]-alphaJold)*dataMatrix[i,:]*dataMatrix[j,:].Tb2 = b - Ej- labelMat[i]*(alphas[i]-alphaIold)*dataMatrix[i,:]*dataMatrix[j,:].T - labelMat[j]*(alphas[j]-alphaJold)*dataMatrix[j,:]*dataMatrix[j,:].Tif (0 < alphas[i]) and (C > alphas[i]): b = b1elif (0 < alphas[j]) and (C > alphas[j]): b = b2else: b = (b1 + b2)/2.0alphaPairsChanged += 1print("iter: %d i:%d, pairs changed %d" % (iter,i,alphaPairsChanged))if (alphaPairsChanged == 0): iter += 1else: iter = 0print("iteration number: %d" % iter)return b,alphasdef kernelTrans(X, A, kTup): #calc the kernel or transform data to a higher dimensional spacem,n = shape(X)K = mat(zeros((m,1)))if kTup[0]=='lin': K = X * A.T   #linear kernelelif kTup[0]=='rbf':for j in range(m):deltaRow = X[j,:] - AK[j] = deltaRow*deltaRow.TK = exp(K/(-1*kTup[1]**2)) #divide in NumPy is element-wise not matrix like Matlabelse: raise NameError('Houston We Have a Problem -- \That Kernel is not recognized')return Kclass optStruct:def __init__(self,dataMatIn, classLabels, C, toler, kTup):  # Initialize the structure with the parametersself.X = dataMatInself.labelMat = classLabelsself.C = Cself.tol = tolerself.m = shape(dataMatIn)[0]self.alphas = mat(zeros((self.m,1)))self.b = 0self.eCache = mat(zeros((self.m,2))) #first column is valid flagself.K = mat(zeros((self.m,self.m)))for i in range(self.m):self.K[:,i] = kernelTrans(self.X, self.X[i,:], kTup)def calcEk(oS, k):fXk = float(multiply(oS.alphas,oS.labelMat).T*oS.K[:,k] + oS.b)Ek = fXk - float(oS.labelMat[k])return Ekdef selectJ(i, oS, Ei):         #this is the second choice -heurstic, and calcs EjmaxK = -1; maxDeltaE = 0; Ej = 0oS.eCache[i] = [1,Ei]  #set valid #choose the alpha that gives the maximum delta EvalidEcacheList = nonzero(oS.eCache[:,0].A)[0]if (len(validEcacheList)) > 1:for k in validEcacheList:   #loop through valid Ecache values and find the one that maximizes delta Eif k == i: continue #don't calc for i, waste of timeEk = calcEk(oS, k)deltaE = abs(Ei - Ek)if (deltaE > maxDeltaE):maxK = k; maxDeltaE = deltaE; Ej = Ekreturn maxK, Ejelse:   #in this case (first time around) we don't have any valid eCache valuesj = selectJrand(i, oS.m)Ej = calcEk(oS, j)return j, Ejdef updateEk(oS, k):#after any alpha has changed update the new value in the cacheEk = calcEk(oS, k)oS.eCache[k] = [1,Ek]def innerL(i, oS):Ei = calcEk(oS, i)if ((oS.labelMat[i]*Ei < -oS.tol) and (oS.alphas[i] < oS.C)) or ((oS.labelMat[i]*Ei > oS.tol) and (oS.alphas[i] > 0)):j,Ej = selectJ(i, oS, Ei) #this has been changed from selectJrandalphaIold = oS.alphas[i].copy(); alphaJold = oS.alphas[j].copy();if (oS.labelMat[i] != oS.labelMat[j]):L = max(0, oS.alphas[j] - oS.alphas[i])H = min(oS.C, oS.C + oS.alphas[j] - oS.alphas[i])else:L = max(0, oS.alphas[j] + oS.alphas[i] - oS.C)H = min(oS.C, oS.alphas[j] + oS.alphas[i])if L==H: print("L==H"); return 0eta = 2.0 * oS.K[i,j] - oS.K[i,i] - oS.K[j,j] #changed for kernelif eta >= 0: print("eta>=0"); return 0oS.alphas[j] -= oS.labelMat[j]*(Ei - Ej)/etaoS.alphas[j] = clipAlpha(oS.alphas[j],H,L)updateEk(oS, j) #added this for the Ecacheif (abs(oS.alphas[j] - alphaJold) < 0.00001): print("j not moving enough"); return 0oS.alphas[i] += oS.labelMat[j]*oS.labelMat[i]*(alphaJold - oS.alphas[j])#update i by the same amount as jupdateEk(oS, i) #added this for the Ecache                    #the update is in the oppostie directionb1 = oS.b - Ei- oS.labelMat[i]*(oS.alphas[i]-alphaIold)*oS.K[i,i] - oS.labelMat[j]*(oS.alphas[j]-alphaJold)*oS.K[i,j]b2 = oS.b - Ej- oS.labelMat[i]*(oS.alphas[i]-alphaIold)*oS.K[i,j]- oS.labelMat[j]*(oS.alphas[j]-alphaJold)*oS.K[j,j]if (0 < oS.alphas[i]) and (oS.C > oS.alphas[i]): oS.b = b1elif (0 < oS.alphas[j]) and (oS.C > oS.alphas[j]): oS.b = b2else: oS.b = (b1 + b2)/2.0return 1else: return 0def smoP(dataMatIn, classLabels, C, toler, maxIter,kTup=('lin', 0)):    #full Platt SMOoS = optStruct(mat(dataMatIn),mat(classLabels).transpose(),C,toler, kTup)iter = 0entireSet = True; alphaPairsChanged = 0while (iter < maxIter) and ((alphaPairsChanged > 0) or (entireSet)):alphaPairsChanged = 0if entireSet:   #go over allfor i in range(oS.m):alphaPairsChanged += innerL(i,oS)print("fullSet, iter: %d i:%d, pairs changed %d" % (iter,i,alphaPairsChanged))iter += 1else:#go over non-bound (railed) alphasnonBoundIs = nonzero((oS.alphas.A > 0) * (oS.alphas.A < C))[0]for i in nonBoundIs:alphaPairsChanged += innerL(i,oS)print("non-bound, iter: %d i:%d, pairs changed %d" % (iter,i,alphaPairsChanged))iter += 1if entireSet: entireSet = False #toggle entire set loopelif (alphaPairsChanged == 0): entireSet = Trueprint("iteration number: %d" % iter)return oS.b,oS.alphasdef calcWs(alphas,dataArr,classLabels):X = mat(dataArr); labelMat = mat(classLabels).transpose()m,n = shape(X)w = zeros((n,1))for i in range(m):w += multiply(alphas[i]*labelMat[i],X[i,:].T)return wdef testRbf(k1=1.3):dataArr,labelArr = loadDataSet('testSetRBF.txt')b,alphas = smoP(dataArr, labelArr, 200, 0.0001, 10000, ('rbf', k1)) #C=200 importantdatMat=mat(dataArr); labelMat = mat(labelArr).transpose()svInd=nonzero(alphas.A>0)[0]sVs=datMat[svInd] #get matrix of only support vectorslabelSV = labelMat[svInd];print("there are %d Support Vectors" % shape(sVs)[0])m,n = shape(datMat)errorCount = 0for i in range(m):kernelEval = kernelTrans(sVs,datMat[i,:],('rbf', k1))predict=kernelEval.T * multiply(labelSV,alphas[svInd]) + bif sign(predict)!=sign(labelArr[i]): errorCount += 1print("the training error rate is: %f" % (float(errorCount)/m))dataArr,labelArr = loadDataSet('testSetRBF2.txt')errorCount = 0datMat=mat(dataArr); labelMat = mat(labelArr).transpose()m,n = shape(datMat)for i in range(m):kernelEval = kernelTrans(sVs,datMat[i,:],('rbf', k1))predict=kernelEval.T * multiply(labelSV,alphas[svInd]) + bif sign(predict)!=sign(labelArr[i]): errorCount += 1print("the test error rate is: %f" % (float(errorCount)/m))def img2vector(filename):returnVect = zeros((1,1024))fr = open(filename)for i in range(32):lineStr = fr.readline()for j in range(32):returnVect[0,32*i+j] = int(lineStr[j])return returnVectdef loadImages(dirName):from os import listdirhwLabels = []trainingFileList = listdir(dirName)           #load the training setm = len(trainingFileList)trainingMat = zeros((m,1024))for i in range(m):fileNameStr = trainingFileList[i]fileStr = fileNameStr.split('.')[0]     #take off .txtclassNumStr = int(fileStr.split('_')[0])if classNumStr == 9: hwLabels.append(-1)else: hwLabels.append(1)trainingMat[i,:] = img2vector('%s/%s' % (dirName, fileNameStr))return trainingMat, hwLabelsdef testDigits(kTup=('rbf', 10)):dataArr,labelArr = loadImages('trainingDigits')b,alphas = smoP(dataArr, labelArr, 200, 0.0001, 10000, kTup)datMat=mat(dataArr); labelMat = mat(labelArr).transpose()svInd=nonzero(alphas.A>0)[0]sVs=datMat[svInd]labelSV = labelMat[svInd];print("there are %d Support Vectors" % shape(sVs)[0])m,n = shape(datMat)errorCount = 0for i in range(m):kernelEval = kernelTrans(sVs,datMat[i,:],kTup)predict=kernelEval.T * multiply(labelSV,alphas[svInd]) + bif sign(predict)!=sign(labelArr[i]): errorCount += 1print("the training error rate is: %f" % (float(errorCount)/m))dataArr,labelArr = loadImages('testDigits')errorCount = 0datMat=mat(dataArr); labelMat = mat(labelArr).transpose()m,n = shape(datMat)for i in range(m):kernelEval = kernelTrans(sVs,datMat[i,:],kTup)predict=kernelEval.T * multiply(labelSV,alphas[svInd]) + bif sign(predict)!=sign(labelArr[i]): errorCount += 1print("the test error rate is: %f" % (float(errorCount)/m))'''#######********************************
Non-Kernel VErsions below
'''#######********************************class optStructK:def __init__(self,dataMatIn, classLabels, C, toler):  # Initialize the structure with the parametersself.X = dataMatInself.labelMat = classLabelsself.C = Cself.tol = tolerself.m = shape(dataMatIn)[0]self.alphas = mat(zeros((self.m,1)))self.b = 0self.eCache = mat(zeros((self.m,2))) #first column is valid flagdef calcEkK(oS, k):fXk = float(multiply(oS.alphas,oS.labelMat).T*(oS.X*oS.X[k,:].T)) + oS.bEk = fXk - float(oS.labelMat[k])return Ekdef selectJK(i, oS, Ei):         #this is the second choice -heurstic, and calcs EjmaxK = -1; maxDeltaE = 0; Ej = 0oS.eCache[i] = [1,Ei]  #set valid #choose the alpha that gives the maximum delta EvalidEcacheList = nonzero(oS.eCache[:,0].A)[0]if (len(validEcacheList)) > 1:for k in validEcacheList:   #loop through valid Ecache values and find the one that maximizes delta Eif k == i: continue #don't calc for i, waste of timeEk = calcEk(oS, k)deltaE = abs(Ei - Ek)if (deltaE > maxDeltaE):maxK = k; maxDeltaE = deltaE; Ej = Ekreturn maxK, Ejelse:   #in this case (first time around) we don't have any valid eCache valuesj = selectJrand(i, oS.m)Ej = calcEk(oS, j)return j, Ejdef updateEkK(oS, k):#after any alpha has changed update the new value in the cacheEk = calcEk(oS, k)oS.eCache[k] = [1,Ek]def innerLK(i, oS):Ei = calcEk(oS, i)if ((oS.labelMat[i]*Ei < -oS.tol) and (oS.alphas[i] < oS.C)) or ((oS.labelMat[i]*Ei > oS.tol) and (oS.alphas[i] > 0)):j,Ej = selectJ(i, oS, Ei) #this has been changed from selectJrandalphaIold = oS.alphas[i].copy(); alphaJold = oS.alphas[j].copy();if (oS.labelMat[i] != oS.labelMat[j]):L = max(0, oS.alphas[j] - oS.alphas[i])H = min(oS.C, oS.C + oS.alphas[j] - oS.alphas[i])else:L = max(0, oS.alphas[j] + oS.alphas[i] - oS.C)H = min(oS.C, oS.alphas[j] + oS.alphas[i])if L==H: print("L==H"); return 0eta = 2.0 * oS.X[i,:]*oS.X[j,:].T - oS.X[i,:]*oS.X[i,:].T - oS.X[j,:]*oS.X[j,:].Tif eta >= 0: print("eta>=0"); return 0oS.alphas[j] -= oS.labelMat[j]*(Ei - Ej)/etaoS.alphas[j] = clipAlpha(oS.alphas[j],H,L)updateEk(oS, j) #added this for the Ecacheif (abs(oS.alphas[j] - alphaJold) < 0.00001): print("j not moving enough"); return 0oS.alphas[i] += oS.labelMat[j]*oS.labelMat[i]*(alphaJold - oS.alphas[j]) #update i by the same amount as jupdateEk(oS, i) #added this for the Ecache                    #the update is in the oppostie directionb1 = oS.b - Ei- oS.labelMat[i]*(oS.alphas[i]-alphaIold)*oS.X[i,:]*oS.X[i,:].T - oS.labelMat[j]*(oS.alphas[j]-alphaJold)*oS.X[i,:]*oS.X[j,:].Tb2 = oS.b - Ej- oS.labelMat[i]*(oS.alphas[i]-alphaIold)*oS.X[i,:]*oS.X[j,:].T - oS.labelMat[j]*(oS.alphas[j]-alphaJold)*oS.X[j,:]*oS.X[j,:].Tif (0 < oS.alphas[i]) and (oS.C > oS.alphas[i]): oS.b = b1elif (0 < oS.alphas[j]) and (oS.C > oS.alphas[j]): oS.b = b2else: oS.b = (b1 + b2)/2.0return 1else: return 0def smoPK(dataMatIn, classLabels, C, toler, maxIter):    #full Platt SMOoS = optStruct(mat(dataMatIn),mat(classLabels).transpose(),C,toler)iter = 0entireSet = True; alphaPairsChanged = 0while (iter < maxIter) and ((alphaPairsChanged > 0) or (entireSet)):alphaPairsChanged = 0if entireSet:   #go over allfor i in range(oS.m):alphaPairsChanged += innerL(i,oS)print("fullSet, iter: %d i:%d, pairs changed %d" % (iter,i,alphaPairsChanged))iter += 1else:#go over non-bound (railed) alphasnonBoundIs = nonzero((oS.alphas.A > 0) * (oS.alphas.A < C))[0]for i in nonBoundIs:alphaPairsChanged += innerL(i,oS)print("non-bound, iter: %d i:%d, pairs changed %d" % (iter,i,alphaPairsChanged))iter += 1if entireSet: entireSet = False #toggle entire set loopelif (alphaPairsChanged == 0): entireSet = Trueprint("iteration number: %d" % iter)return oS.b,oS.alphasif __name__ == '__main__':testRbf()

运行结果:

"C:\Program Files\Python\Python37\python.exe" "D:/Pycharm Projects/MLDemo/MLDemo.py"
L==H
fullSet, iter: 0 i:0, pairs changed 0
fullSet, iter: 0 i:1, pairs changed 1
fullSet, iter: 0 i:2, pairs changed 2
fullSet, iter: 0 i:3, pairs changed 3
fullSet, iter: 0 i:4, pairs changed 3
fullSet, iter: 0 i:5, pairs changed 4
fullSet, iter: 0 i:6, pairs changed 5
fullSet, iter: 0 i:7, pairs changed 5
fullSet, iter: 0 i:8, pairs changed 6
fullSet, iter: 0 i:9, pairs changed 6
fullSet, iter: 0 i:10, pairs changed 7
fullSet, iter: 0 i:11, pairs changed 8
j not moving enough
fullSet, iter: 0 i:12, pairs changed 8
fullSet, iter: 0 i:13, pairs changed 9
fullSet, iter: 0 i:14, pairs changed 10
fullSet, iter: 0 i:15, pairs changed 11
fullSet, iter: 0 i:16, pairs changed 12
fullSet, iter: 0 i:17, pairs changed 12
fullSet, iter: 0 i:18, pairs changed 13
fullSet, iter: 0 i:19, pairs changed 14
fullSet, iter: 0 i:20, pairs changed 14
fullSet, iter: 0 i:21, pairs changed 15
fullSet, iter: 0 i:22, pairs changed 15
fullSet, iter: 0 i:23, pairs changed 15
fullSet, iter: 0 i:24, pairs changed 16
j not moving enough
fullSet, iter: 0 i:25, pairs changed 16
fullSet, iter: 0 i:26, pairs changed 16
j not moving enough
fullSet, iter: 0 i:27, pairs changed 16
fullSet, iter: 0 i:28, pairs changed 16
fullSet, iter: 0 i:29, pairs changed 16
j not moving enough
fullSet, iter: 0 i:30, pairs changed 16
fullSet, iter: 0 i:31, pairs changed 17
fullSet, iter: 0 i:32, pairs changed 17
fullSet, iter: 0 i:33, pairs changed 18
j not moving enough
fullSet, iter: 0 i:34, pairs changed 18
fullSet, iter: 0 i:35, pairs changed 18
fullSet, iter: 0 i:36, pairs changed 19
fullSet, iter: 0 i:37, pairs changed 19
fullSet, iter: 0 i:38, pairs changed 19
j not moving enough
fullSet, iter: 0 i:39, pairs changed 19
fullSet, iter: 0 i:40, pairs changed 20
fullSet, iter: 0 i:41, pairs changed 21
L==H
fullSet, iter: 0 i:42, pairs changed 21
fullSet, iter: 0 i:43, pairs changed 21
j not moving enough
fullSet, iter: 0 i:44, pairs changed 21
fullSet, iter: 0 i:45, pairs changed 22
fullSet, iter: 0 i:46, pairs changed 22
fullSet, iter: 0 i:47, pairs changed 22
fullSet, iter: 0 i:48, pairs changed 23
fullSet, iter: 0 i:49, pairs changed 23
fullSet, iter: 0 i:50, pairs changed 24
j not moving enough
fullSet, iter: 0 i:51, pairs changed 24
fullSet, iter: 0 i:52, pairs changed 25
fullSet, iter: 0 i:53, pairs changed 25
fullSet, iter: 0 i:54, pairs changed 26
fullSet, iter: 0 i:55, pairs changed 26
fullSet, iter: 0 i:56, pairs changed 27
L==H
fullSet, iter: 0 i:57, pairs changed 27
fullSet, iter: 0 i:58, pairs changed 27
fullSet, iter: 0 i:59, pairs changed 27
j not moving enough
fullSet, iter: 0 i:60, pairs changed 27
fullSet, iter: 0 i:61, pairs changed 28
fullSet, iter: 0 i:62, pairs changed 29
fullSet, iter: 0 i:63, pairs changed 29
fullSet, iter: 0 i:64, pairs changed 29
fullSet, iter: 0 i:65, pairs changed 29
fullSet, iter: 0 i:66, pairs changed 29
fullSet, iter: 0 i:67, pairs changed 29
fullSet, iter: 0 i:68, pairs changed 29
fullSet, iter: 0 i:69, pairs changed 29
fullSet, iter: 0 i:70, pairs changed 29
fullSet, iter: 0 i:71, pairs changed 29
fullSet, iter: 0 i:72, pairs changed 29
fullSet, iter: 0 i:73, pairs changed 29
fullSet, iter: 0 i:74, pairs changed 30
j not moving enough
fullSet, iter: 0 i:75, pairs changed 30
fullSet, iter: 0 i:76, pairs changed 30
fullSet, iter: 0 i:77, pairs changed 30
fullSet, iter: 0 i:78, pairs changed 30
fullSet, iter: 0 i:79, pairs changed 30
j not moving enough
fullSet, iter: 0 i:80, pairs changed 30
fullSet, iter: 0 i:81, pairs changed 30
L==H
fullSet, iter: 0 i:82, pairs changed 30
fullSet, iter: 0 i:83, pairs changed 30
fullSet, iter: 0 i:84, pairs changed 30
fullSet, iter: 0 i:85, pairs changed 30
fullSet, iter: 0 i:86, pairs changed 30
fullSet, iter: 0 i:87, pairs changed 30
fullSet, iter: 0 i:88, pairs changed 30
fullSet, iter: 0 i:89, pairs changed 30
fullSet, iter: 0 i:90, pairs changed 30
fullSet, iter: 0 i:91, pairs changed 30
fullSet, iter: 0 i:92, pairs changed 30
fullSet, iter: 0 i:93, pairs changed 30
fullSet, iter: 0 i:94, pairs changed 30
fullSet, iter: 0 i:95, pairs changed 30
L==H
fullSet, iter: 0 i:96, pairs changed 30
fullSet, iter: 0 i:97, pairs changed 30
fullSet, iter: 0 i:98, pairs changed 30
L==H
fullSet, iter: 0 i:99, pairs changed 30
iteration number: 1
non-bound, iter: 1 i:0, pairs changed 1
j not moving enough
non-bound, iter: 1 i:1, pairs changed 1
non-bound, iter: 1 i:2, pairs changed 2
j not moving enough
non-bound, iter: 1 i:3, pairs changed 2
j not moving enough
non-bound, iter: 1 i:6, pairs changed 2
j not moving enough
non-bound, iter: 1 i:8, pairs changed 2
j not moving enough
non-bound, iter: 1 i:10, pairs changed 2
j not moving enough
non-bound, iter: 1 i:11, pairs changed 2
j not moving enough
non-bound, iter: 1 i:13, pairs changed 2
j not moving enough
non-bound, iter: 1 i:14, pairs changed 2
non-bound, iter: 1 i:15, pairs changed 3
j not moving enough
non-bound, iter: 1 i:16, pairs changed 3
j not moving enough
non-bound, iter: 1 i:18, pairs changed 3
j not moving enough
non-bound, iter: 1 i:19, pairs changed 3
j not moving enough
non-bound, iter: 1 i:21, pairs changed 3
j not moving enough
non-bound, iter: 1 i:27, pairs changed 3
j not moving enough
non-bound, iter: 1 i:30, pairs changed 3
j not moving enough
non-bound, iter: 1 i:31, pairs changed 3
j not moving enough
non-bound, iter: 1 i:33, pairs changed 3
j not moving enough
non-bound, iter: 1 i:36, pairs changed 3
j not moving enough
non-bound, iter: 1 i:40, pairs changed 3
non-bound, iter: 1 i:41, pairs changed 3
j not moving enough
non-bound, iter: 1 i:42, pairs changed 3
j not moving enough
non-bound, iter: 1 i:45, pairs changed 3
j not moving enough
non-bound, iter: 1 i:48, pairs changed 3
j not moving enough
non-bound, iter: 1 i:50, pairs changed 3
j not moving enough
non-bound, iter: 1 i:52, pairs changed 3
j not moving enough
non-bound, iter: 1 i:54, pairs changed 3
non-bound, iter: 1 i:56, pairs changed 4
j not moving enough
non-bound, iter: 1 i:61, pairs changed 4
non-bound, iter: 1 i:62, pairs changed 5
j not moving enough
non-bound, iter: 1 i:74, pairs changed 5
iteration number: 2
j not moving enough
non-bound, iter: 2 i:1, pairs changed 0
j not moving enough
non-bound, iter: 2 i:2, pairs changed 0
j not moving enough
non-bound, iter: 2 i:3, pairs changed 0
j not moving enough
non-bound, iter: 2 i:6, pairs changed 0
non-bound, iter: 2 i:8, pairs changed 1
j not moving enough
non-bound, iter: 2 i:10, pairs changed 1
non-bound, iter: 2 i:11, pairs changed 2
j not moving enough
non-bound, iter: 2 i:13, pairs changed 2
j not moving enough
non-bound, iter: 2 i:14, pairs changed 2
j not moving enough
non-bound, iter: 2 i:16, pairs changed 2
j not moving enough
non-bound, iter: 2 i:18, pairs changed 2
j not moving enough
non-bound, iter: 2 i:19, pairs changed 2
j not moving enough
non-bound, iter: 2 i:21, pairs changed 2
j not moving enough
non-bound, iter: 2 i:27, pairs changed 2
j not moving enough
non-bound, iter: 2 i:30, pairs changed 2
j not moving enough
non-bound, iter: 2 i:31, pairs changed 2
j not moving enough
non-bound, iter: 2 i:33, pairs changed 2
j not moving enough
non-bound, iter: 2 i:36, pairs changed 2
j not moving enough
non-bound, iter: 2 i:40, pairs changed 2
j not moving enough
non-bound, iter: 2 i:41, pairs changed 2
j not moving enough
non-bound, iter: 2 i:42, pairs changed 2
j not moving enough
non-bound, iter: 2 i:45, pairs changed 2
j not moving enough
non-bound, iter: 2 i:48, pairs changed 2
j not moving enough
non-bound, iter: 2 i:50, pairs changed 2
j not moving enough
non-bound, iter: 2 i:52, pairs changed 2
j not moving enough
non-bound, iter: 2 i:54, pairs changed 2
j not moving enough
non-bound, iter: 2 i:56, pairs changed 2
j not moving enough
non-bound, iter: 2 i:61, pairs changed 2
j not moving enough
non-bound, iter: 2 i:62, pairs changed 2
j not moving enough
non-bound, iter: 2 i:74, pairs changed 2
iteration number: 3
j not moving enough
non-bound, iter: 3 i:1, pairs changed 0
j not moving enough
non-bound, iter: 3 i:2, pairs changed 0
j not moving enough
non-bound, iter: 3 i:3, pairs changed 0
j not moving enough
non-bound, iter: 3 i:6, pairs changed 0
j not moving enough
non-bound, iter: 3 i:8, pairs changed 0
j not moving enough
non-bound, iter: 3 i:10, pairs changed 0
non-bound, iter: 3 i:11, pairs changed 0
j not moving enough
non-bound, iter: 3 i:13, pairs changed 0
j not moving enough
non-bound, iter: 3 i:14, pairs changed 0
j not moving enough
non-bound, iter: 3 i:16, pairs changed 0
j not moving enough
non-bound, iter: 3 i:18, pairs changed 0
j not moving enough
non-bound, iter: 3 i:19, pairs changed 0
j not moving enough
non-bound, iter: 3 i:21, pairs changed 0
j not moving enough
non-bound, iter: 3 i:27, pairs changed 0
j not moving enough
non-bound, iter: 3 i:30, pairs changed 0
j not moving enough
non-bound, iter: 3 i:31, pairs changed 0
j not moving enough
non-bound, iter: 3 i:33, pairs changed 0
j not moving enough
non-bound, iter: 3 i:36, pairs changed 0
j not moving enough
non-bound, iter: 3 i:40, pairs changed 0
j not moving enough
non-bound, iter: 3 i:41, pairs changed 0
j not moving enough
non-bound, iter: 3 i:42, pairs changed 0
j not moving enough
non-bound, iter: 3 i:45, pairs changed 0
j not moving enough
non-bound, iter: 3 i:48, pairs changed 0
j not moving enough
non-bound, iter: 3 i:50, pairs changed 0
j not moving enough
non-bound, iter: 3 i:52, pairs changed 0
j not moving enough
non-bound, iter: 3 i:54, pairs changed 0
j not moving enough
non-bound, iter: 3 i:56, pairs changed 0
j not moving enough
non-bound, iter: 3 i:61, pairs changed 0
j not moving enough
non-bound, iter: 3 i:62, pairs changed 0
j not moving enough
non-bound, iter: 3 i:74, pairs changed 0
iteration number: 4
j not moving enough
fullSet, iter: 4 i:0, pairs changed 0
j not moving enough
fullSet, iter: 4 i:1, pairs changed 0
j not moving enough
fullSet, iter: 4 i:2, pairs changed 0
j not moving enough
fullSet, iter: 4 i:3, pairs changed 0
fullSet, iter: 4 i:4, pairs changed 0
fullSet, iter: 4 i:5, pairs changed 0
j not moving enough
fullSet, iter: 4 i:6, pairs changed 0
fullSet, iter: 4 i:7, pairs changed 0
j not moving enough
fullSet, iter: 4 i:8, pairs changed 0
fullSet, iter: 4 i:9, pairs changed 0
j not moving enough
fullSet, iter: 4 i:10, pairs changed 0
fullSet, iter: 4 i:11, pairs changed 0
fullSet, iter: 4 i:12, pairs changed 0
j not moving enough
fullSet, iter: 4 i:13, pairs changed 0
j not moving enough
fullSet, iter: 4 i:14, pairs changed 0
fullSet, iter: 4 i:15, pairs changed 0
j not moving enough
fullSet, iter: 4 i:16, pairs changed 0
L==H
fullSet, iter: 4 i:17, pairs changed 0
j not moving enough
fullSet, iter: 4 i:18, pairs changed 0
j not moving enough
fullSet, iter: 4 i:19, pairs changed 0
fullSet, iter: 4 i:20, pairs changed 0
j not moving enough
fullSet, iter: 4 i:21, pairs changed 0
fullSet, iter: 4 i:22, pairs changed 0
fullSet, iter: 4 i:23, pairs changed 0
j not moving enough
fullSet, iter: 4 i:24, pairs changed 0
L==H
fullSet, iter: 4 i:25, pairs changed 0
fullSet, iter: 4 i:26, pairs changed 0
j not moving enough
fullSet, iter: 4 i:27, pairs changed 0
fullSet, iter: 4 i:28, pairs changed 0
fullSet, iter: 4 i:29, pairs changed 0
j not moving enough
fullSet, iter: 4 i:30, pairs changed 0
j not moving enough
fullSet, iter: 4 i:31, pairs changed 0
fullSet, iter: 4 i:32, pairs changed 0
j not moving enough
fullSet, iter: 4 i:33, pairs changed 0
fullSet, iter: 4 i:34, pairs changed 0
fullSet, iter: 4 i:35, pairs changed 0
j not moving enough
fullSet, iter: 4 i:36, pairs changed 0
fullSet, iter: 4 i:37, pairs changed 0
L==H
fullSet, iter: 4 i:38, pairs changed 0
fullSet, iter: 4 i:39, pairs changed 0
j not moving enough
fullSet, iter: 4 i:40, pairs changed 0
j not moving enough
fullSet, iter: 4 i:41, pairs changed 0
j not moving enough
fullSet, iter: 4 i:42, pairs changed 0
j not moving enough
fullSet, iter: 4 i:43, pairs changed 0
fullSet, iter: 4 i:44, pairs changed 0
j not moving enough
fullSet, iter: 4 i:45, pairs changed 0
L==H
fullSet, iter: 4 i:46, pairs changed 0
fullSet, iter: 4 i:47, pairs changed 0
j not moving enough
fullSet, iter: 4 i:48, pairs changed 0
fullSet, iter: 4 i:49, pairs changed 0
j not moving enough
fullSet, iter: 4 i:50, pairs changed 0
fullSet, iter: 4 i:51, pairs changed 0
j not moving enough
fullSet, iter: 4 i:52, pairs changed 0
L==H
fullSet, iter: 4 i:53, pairs changed 0
j not moving enough
fullSet, iter: 4 i:54, pairs changed 0
fullSet, iter: 4 i:55, pairs changed 0
j not moving enough
fullSet, iter: 4 i:56, pairs changed 0
fullSet, iter: 4 i:57, pairs changed 0
L==H
fullSet, iter: 4 i:58, pairs changed 0
fullSet, iter: 4 i:59, pairs changed 0
fullSet, iter: 4 i:60, pairs changed 0
j not moving enough
fullSet, iter: 4 i:61, pairs changed 0
j not moving enough
fullSet, iter: 4 i:62, pairs changed 0
fullSet, iter: 4 i:63, pairs changed 0
fullSet, iter: 4 i:64, pairs changed 0
L==H
fullSet, iter: 4 i:65, pairs changed 0
L==H
fullSet, iter: 4 i:66, pairs changed 0
fullSet, iter: 4 i:67, pairs changed 0
fullSet, iter: 4 i:68, pairs changed 0
fullSet, iter: 4 i:69, pairs changed 0
j not moving enough
fullSet, iter: 4 i:70, pairs changed 0
fullSet, iter: 4 i:71, pairs changed 0
fullSet, iter: 4 i:72, pairs changed 0
L==H
fullSet, iter: 4 i:73, pairs changed 0
j not moving enough
fullSet, iter: 4 i:74, pairs changed 0
fullSet, iter: 4 i:75, pairs changed 0
L==H
fullSet, iter: 4 i:76, pairs changed 0
fullSet, iter: 4 i:77, pairs changed 0
L==H
fullSet, iter: 4 i:78, pairs changed 0
fullSet, iter: 4 i:79, pairs changed 0
fullSet, iter: 4 i:80, pairs changed 0
L==H
fullSet, iter: 4 i:81, pairs changed 0
L==H
fullSet, iter: 4 i:82, pairs changed 0
fullSet, iter: 4 i:83, pairs changed 0
fullSet, iter: 4 i:84, pairs changed 0
L==H
fullSet, iter: 4 i:85, pairs changed 0
fullSet, iter: 4 i:86, pairs changed 0
L==H
fullSet, iter: 4 i:87, pairs changed 0
fullSet, iter: 4 i:88, pairs changed 0
fullSet, iter: 4 i:89, pairs changed 0
L==H
fullSet, iter: 4 i:90, pairs changed 0
L==H
fullSet, iter: 4 i:91, pairs changed 0
L==H
fullSet, iter: 4 i:92, pairs changed 0
fullSet, iter: 4 i:93, pairs changed 0
fullSet, iter: 4 i:94, pairs changed 0
fullSet, iter: 4 i:95, pairs changed 0
L==H
fullSet, iter: 4 i:96, pairs changed 0
fullSet, iter: 4 i:97, pairs changed 0
fullSet, iter: 4 i:98, pairs changed 0
fullSet, iter: 4 i:99, pairs changed 0
iteration number: 5
there are 30 Support Vectors
the training error rate is: 0.130000
the test error rate is: 0.150000Process finished with exit code 0

机器学习实战:支持向量机相关推荐

  1. 机器学习实战 支持向量机SVM 代码解析

    机器学习实战 支持向量机SVM 代码解析 <机器学习实战>用代码实现了算法,理解源代码更有助于我们掌握算法,但是比较适合有一定基础的小伙伴.svm这章代码看起来风轻云淡,实则对于新手来说有 ...

  2. python支持向量机回归_机器学习实战-支持向量机原理、Python实现和可视化(分类)...

    支持向量机(SVM)广泛应用于模式分类和非线性回归领域. SVM算法的原始形式由Vladimir N.Vapnik和Alexey Ya提出.自从那以后,SVM已经被巨大地改变以成功地用于许多现实世界问 ...

  3. Python3《机器学习实战》学习笔记(八):支持向量机原理篇之手撕线性SVM

    原 Python3<机器学习实战>学习笔记(八):支持向量机原理篇之手撕线性SVM 置顶 2017年09月23日 17:50:18 阅读数:12644 转载请注明作者和出处: https: ...

  4. 机器学习实战(五)支持向量机SVM(Support Vector Machine)

    目录 0. 前言 1. 寻找最大间隔 2. 拉格朗日乘子法和KKT条件 3. 松弛变量 4. 带松弛变量的拉格朗日乘子法和KKT条件 5. 序列最小优化SMO(Sequential Minimal O ...

  5. Python3:《机器学习实战》之支持向量机(2)简化版SMO

    Python3:<机器学习实战>之支持向量机(2)简化版SMO 转载请注明作者和出处:http://blog.csdn.net/u011475210 代码地址:https://github ...

  6. 机器学习实战教程(八):支持向量机原理篇

    一.前言 本篇文章参考了诸多大牛的文章写成的,深入浅出,通俗易懂.对于什么是SVM做出了生动的阐述,同时也进行了线性SVM的理论推导,以及最后的编程实践,公式较多,还需静下心来一点一点推导. 二.什么 ...

  7. 机器学习实战之路 —— 5 SVM支持向量机

    机器学习实战之路 -- 5 SVM支持向量机 1. 支持向量机概述 1.1 线性分类 1.2 非线性分类 2. 支持向量机分类中的问题 2.1 核函数的选择 2.2 多类分类 2.3 不平衡数据的处理 ...

  8. 刻意学习:机器学习实战--Task03分类问题:支持向量机

    刻意学习:机器学习实战–Task03分类问题:支持向量机 1 什么是SVM? 首先,支持向量机不是一种机器,而是一种机器学习算法. 1.SVM - Support Vector Machine ,俗称 ...

  9. python神经网络算法pdf_Python与机器学习实战 决策树、集成学习、支持向量机与神经网络算法详解及编程实现.pdf...

    作 者 :何宇健 出版发行 : 北京:电子工业出版社 , 2017.06 ISBN号 :978-7-121-31720-0 页 数 : 315 原书定价 : 69.00 主题词 : 软件工具-程序设计 ...

最新文章

  1. Maven实战:Maven生命周期
  2. Eclipse 增加打开文件路径功能
  3. windows php cli 后台运行_【续】windows环境redis未授权利用方式梳理
  4. three approaches to industrial experiences at cambridge
  5. 看事实风向的网站,做风向建模和出去放风筝,飞无人机的时候可以看一看~
  6. 请实现一个函数,将字符串中的空格替换成“%20”
  7. 20220209-CTF-MISC-BUUCTF-修改图片宽高--ARCHPR工具的使用
  8. Linux——tar打包文件和压缩解压缩
  9. WinForm应用程序框架设计之WinAction(一:显示列表窗体)
  10. mysql select in 排序_MySQL数据库之Mysql select in 按id排序实现方法
  11. Codeforces Round #383 (Div. 1): D. Arpa’s letter-marked tree…(dsu on tree+状压)
  12. python查看我国1990-2015年间的温度变化情况
  13. 中国移动MM如何解决盗版问题
  14. AD将原理图转换成彩色或者黑白PDF
  15. 彻底删除顽固dll文件
  16. windows下视频捕捉VFW和DirectShow
  17. PDF文件忘记了密码如何打开文件
  18. 关于计算机有用英语作文带翻译,关于健康的英语作文带翻译
  19. 解决win10更新后vmware无法启动问题
  20. 供应链金融操作过程中难点解析

热门文章

  1. 拒绝图片延迟加载,爽爽的看美图
  2. 【转】】Vue项目部署tomcat,刷新报错404解决办法
  3. [转] 视频直播前端方案
  4. TP5_模型初始化_踩坑记录
  5. SysTick定时器的一个简单应用
  6. 唤起微信/QQ返回不了当前页面解决方法
  7. 使用Hibernate操作数据库
  8. 网络基础——知识生活化会变得如此简单
  9. Zabbix 集成 OneAlert 实现全方位告警
  10. js setTimeout()的使用