机器学习实战:k-近邻算法(手写数字识别)
生活随笔
收集整理的這篇文章主要介紹了
机器学习实战:k-近邻算法(手写数字识别)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
k近鄰法(k-nearest neighbor, k-NN)是1967年由Cover T和Hart P提出的一種基本分類與回歸方法。它的工作原理是:存在一個樣本數據集合,也稱作為訓練樣本集,并且樣本集中每個數據都存在標簽,即我們知道樣本集中每一個數據與所屬分類的對應關系。輸入沒有標簽的新數據后,將新的數據的每個特征與樣本集中數據對應的特征進行比較,然后算法提取樣本最相似數據(最近鄰)的分類標簽。
機器學習實戰源碼:
''' Created on Sep 16, 2010 kNN: k Nearest NeighborsInput: inX: vector to compare to existing dataset (1xN)dataSet: size m data set of known vectors (NxM)labels: data set labels (1xM vector)k: number of neighbors to use for comparison (should be an odd number)Output: the most popular class label@author: pbharrin ''' from numpy import * import operator from os import listdirdef classify0(inX, dataSet, labels, k):dataSetSize = dataSet.shape[0]diffMat = tile(inX, (dataSetSize, 1)) - dataSetsqDiffMat = diffMat ** 2sqDistances = sqDiffMat.sum(axis=1)distances = sqDistances ** 0.5sortedDistIndicies = distances.argsort()classCount = {}for i in range(k):voteIlabel = labels[sortedDistIndicies[i]]classCount[voteIlabel] = classCount.get(voteIlabel, 0) + 1sortedClassCount = sorted(classCount.items(), key=operator.itemgetter(1), reverse=True)return sortedClassCount[0][0]def createDataSet():group = array([[1.0, 1.1], [1.0, 1.0], [0, 0], [0, 0.1]])labels = ['A', 'A', 'B', 'B']return group, labelsdef file2matrix(filename):fr = open(filename)numberOfLines = len(fr.readlines()) # get the number of lines in the filereturnMat = zeros((numberOfLines, 3)) # prepare matrix to returnclassLabelVector = [] # prepare labels returnfr = open(filename)index = 0for line in fr.readlines():line = line.strip()listFromLine = line.split('\t')returnMat[index, :] = listFromLine[0:3]classLabelVector.append(int(listFromLine[-1]))index += 1return returnMat, classLabelVectordef autoNorm(dataSet):minVals = dataSet.min(0)maxVals = dataSet.max(0)ranges = maxVals - minValsnormDataSet = zeros(shape(dataSet))m = dataSet.shape[0]normDataSet = dataSet - tile(minVals, (m, 1))normDataSet = normDataSet / tile(ranges, (m, 1)) # element wise dividereturn normDataSet, ranges, minValsdef datingClassTest():hoRatio = 0.50 # hold out 10%datingDataMat, datingLabels = file2matrix('datingTestSet2.txt') # load data setfrom filenormMat, ranges, minVals = autoNorm(datingDataMat)m = normMat.shape[0]numTestVecs = int(m * hoRatio)errorCount = 0.0for i in range(numTestVecs):classifierResult = classify0(normMat[i, :], normMat[numTestVecs:m, :], datingLabels[numTestVecs:m], 3)print("the classifier came back with: %d, the real answer is: %d" % (classifierResult, datingLabels[i]))if (classifierResult != datingLabels[i]): errorCount += 1.0print("the total error rate is: %f" % (errorCount / float(numTestVecs)))print(errorCount)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 handwritingClassTest():hwLabels = []trainingFileList = listdir('trainingDigits') # 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])hwLabels.append(classNumStr)trainingMat[i, :] = img2vector('trainingDigits/%s' % fileNameStr)testFileList = listdir('testDigits') # iterate through the test seterrorCount = 0.0mTest = len(testFileList)for i in range(mTest):fileNameStr = testFileList[i]fileStr = fileNameStr.split('.')[0] # take off .txtclassNumStr = int(fileStr.split('_')[0])vectorUnderTest = img2vector('testDigits/%s' % fileNameStr)classifierResult = classify0(vectorUnderTest, trainingMat, hwLabels, 3)print("the classifier came back with: %d, the real answer is: %d" % (classifierResult, classNumStr))if (classifierResult != classNumStr): errorCount += 1.0print("\nthe total number of errors is: %d" % errorCount)print("\nthe total error rate is: %f" % (errorCount / float(mTest)))if __name__ == '__main__':handwritingClassTest()運行結果:
"C:\Program Files\Python\Python37\python.exe" "D:/Pycharm Projects/MLDemo/Hello.py" the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 0, the real answer is: 0 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 7, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 1, the real answer is: 1 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 2, the real answer is: 2 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 9, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 3, the real answer is: 3 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 4, the real answer is: 4 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 3, the real answer is: 5 the classifier came back with: 6, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 5, the real answer is: 5 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 6, the real answer is: 6 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 7, the real answer is: 7 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 6, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 3, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 1, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 1, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 8, the real answer is: 8 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 1, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 7, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9 the classifier came back with: 9, the real answer is: 9the total number of errors is: 10the total error rate is: 0.010571Process finished with exit code 0?
總結
以上是生活随笔為你收集整理的机器学习实战:k-近邻算法(手写数字识别)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: IT大佬整理的Python机器学习十大算
- 下一篇: 28条有关人工智能的名言,靠不靠谱你来看