机器学习实战教程(三):决策树实战篇(c)

四、使用决策树执行分类

依靠训练数据构造了决策树之后,我们可以将它用于实际数据的分类。在执行数据分类时,需要决策树以及用于构造树的标签向量。然后,程序比较测试数据与决策树上的数值,递归执行该过程直到进入叶子结点;最后将测试数据定义为叶子结点所属的类型。在构建决策树的代码,可以看到,有个featLabels参数。它是用来干什么的?它就是用来记录各个分类结点的,在用决策树做预测的时候,我们按顺序输入需要的分类结点的属性值即可。举个例子,比如我用上述已经训练好的决策树做分类,那么我只需要提供这个人是否有房子,是否有工作这两个信息即可,无需提供冗余的信息。

用决策树做分类的代码很简单,编写代码如下:

# -*- coding: UTF-8 -*-

from math import log

import operator

"""

函数说明:计算给定数据集的经验熵(香农熵)

Parameters:

    dataSet - 数据集

Returns:

    shannonEnt - 经验熵(香农熵)

Author:

    Jack Cui

Modify:

    2017-07-24

"""

def calcShannonEnt(dataSet):

    numEntires = len(dataSet)                        #返回数据集的行数

    labelCounts = {}                                #保存每个标签(Label)出现次数的字典

    for featVec in dataSet:                            #对每组特征向量进行统计

        currentLabel = featVec[-1]                    #提取标签(Label)信息

        if currentLabel not in labelCounts.keys():    #如果标签(Label)没有放入统计次数的字典,添加进去

            labelCounts[currentLabel] = 0

        labelCounts[currentLabel] += 1                #Label计数

    shannonEnt = 0.0                                #经验熵(香农熵)

    for key in labelCounts:                            #计算香农熵

        prob = float(labelCounts[key]) / numEntires    #选择该标签(Label)的概率

        shannonEnt -= prob * log(prob, 2)            #利用公式计算

    return shannonEnt                                #返回经验熵(香农熵)

"""

函数说明:创建测试数据集

Parameters:

    无

Returns:

    dataSet - 数据集

    labels - 特征标签

Author:

    Jack Cui

Modify:

    2017-07-20

"""

def createDataSet():

    dataSet = [[0, 0, 0, 0, 'no'],                        #数据集

            [0, 0, 0, 1, 'no'],

            [0, 1, 0, 1, 'yes'],

            [0, 1, 1, 0, 'yes'],

            [0, 0, 0, 0, 'no'],

            [1, 0, 0, 0, 'no'],

            [1, 0, 0, 1, 'no'],

            [1, 1, 1, 1, 'yes'],

            [1, 0, 1, 2, 'yes'],

            [1, 0, 1, 2, 'yes'],

            [2, 0, 1, 2, 'yes'],

            [2, 0, 1, 1, 'yes'],

            [2, 1, 0, 1, 'yes'],

            [2, 1, 0, 2, 'yes'],

            [2, 0, 0, 0, 'no']]

    labels = ['年龄', '有工作', '有自己的房子', '信贷情况']        #特征标签

    return dataSet, labels                             #返回数据集和分类属性

"""

函数说明:按照给定特征划分数据集

Parameters:

    dataSet - 待划分的数据集

    axis - 划分数据集的特征

    value - 需要返回的特征的值

Returns:

    无

Author:

    Jack Cui

Modify:

    2017-07-24

"""

def splitDataSet(dataSet, axis, value):       

    retDataSet = []                                        #创建返回的数据集列表

    for featVec in dataSet:                             #遍历数据集

        if featVec[axis] == value:

            reducedFeatVec = featVec[:axis]                #去掉axis特征

            reducedFeatVec.extend(featVec[axis+1:])     #将符合条件的添加到返回的数据集

            retDataSet.append(reducedFeatVec)

    return retDataSet                                      #返回划分后的数据集

"""

函数说明:选择最优特征

Parameters:

    dataSet - 数据集

Returns:

    bestFeature - 信息增益最大的(最优)特征的索引值

Author:

    Jack Cui

Modify:

    2017-07-20

"""

def chooseBestFeatureToSplit(dataSet):

    numFeatures = len(dataSet[0]) - 1                    #特征数量

    baseEntropy = calcShannonEnt(dataSet)                 #计算数据集的香农熵

    bestInfoGain = 0.0                                  #信息增益

    bestFeature = -1                                    #最优特征的索引值

    for i in range(numFeatures):                         #遍历所有特征

        #获取dataSet的第i个所有特征

        featList = [example[i] for example in dataSet]

        uniqueVals = set(featList)                         #创建set集合{},元素不可重复

        newEntropy = 0.0                                  #经验条件熵

        for value in uniqueVals:                         #计算信息增益

            subDataSet = splitDataSet(dataSet, i, value)         #subDataSet划分后的子集

            prob = len(subDataSet) / float(len(dataSet))           #计算子集的概率

            newEntropy += prob * calcShannonEnt(subDataSet)     #根据公式计算经验条件熵

        infoGain = baseEntropy - newEntropy                     #信息增益

        # print("第%d个特征的增益为%.3f" % (i, infoGain))            #打印每个特征的信息增益

        if (infoGain > bestInfoGain):                             #计算信息增益

            bestInfoGain = infoGain                             #更新信息增益,找到最大的信息增益

            bestFeature = i                                     #记录信息增益最大的特征的索引值

    return bestFeature                                             #返回信息增益最大的特征的索引值

"""

函数说明:统计classList中出现此处最多的元素(类标签)

Parameters:

    classList - 类标签列表

Returns:

    sortedClassCount[0][0] - 出现此处最多的元素(类标签)

Author:

    Jack Cui

Modify:

    2017-07-24

"""

def majorityCnt(classList):

    classCount = {}

    for vote in classList:                                        #统计classList中每个元素出现的次数

        if vote not in classCount.keys():classCount[vote] = 0   

        classCount[vote] += 1

    sortedClassCount = sorted(classCount.items(), key = operator.itemgetter(1), reverse = True)        #根据字典的值降序排序

    return sortedClassCount[0][0]                                #返回classList中出现次数最多的元素

"""

函数说明:创建决策树

Parameters:

    dataSet - 训练数据集

    labels - 分类属性标签

    featLabels - 存储选择的最优特征标签

Returns:

    myTree - 决策树

Author:

    Jack Cui

Modify:

    2017-07-25

"""

def createTree(dataSet, labels, featLabels):

    classList = [example[-1] for example in dataSet]            #取分类标签(是否放贷:yes or no)

    if classList.count(classList[0]) == len(classList):            #如果类别完全相同则停止继续划分

        return classList[0]

    if len(dataSet[0]) == 1 or len(labels) == 0:                                    #遍历完所有特征时返回出现次数最多的类标签

        return majorityCnt(classList)

    bestFeat = chooseBestFeatureToSplit(dataSet)                #选择最优特征

    bestFeatLabel = labels[bestFeat]                            #最优特征的标签

    featLabels.append(bestFeatLabel)

    myTree = {bestFeatLabel:{}}                                    #根据最优特征的标签生成树

    del(labels[bestFeat])                                        #删除已经使用特征标签

    featValues = [example[bestFeat] for example in dataSet]        #得到训练集中所有最优特征的属性值

    uniqueVals = set(featValues)                                #去掉重复的属性值

    for value in uniqueVals:                                    #遍历特征,创建决策树。                       

        myTree[bestFeatLabel][value] = createTree(splitDataSet(dataSet, bestFeat, value), labels, featLabels)

    return myTree

"""

函数说明:使用决策树分类

Parameters:

    inputTree - 已经生成的决策树

    featLabels - 存储选择的最优特征标签

    testVec - 测试数据列表,顺序对应最优特征标签

Returns:

    classLabel - 分类结果

Author:

    Jack Cui

"""

def classify(inputTree, featLabels, testVec):

    firstStr = next(iter(inputTree))                                                        #获取决策树结点

    secondDict = inputTree[firstStr]                                                        #下一个字典

    featIndex = featLabels.index(firstStr)                                               

    for key in secondDict.keys():

        if testVec[featIndex] == key:

            if type(secondDict[key]).__name__ == 'dict':

                classLabel = classify(secondDict[key], featLabels, testVec)

            else: classLabel = secondDict[key]

    return classLabel

if __name__ == '__main__':

    dataSet, labels = createDataSet()

    featLabels = []

    myTree = createTree(dataSet, labels, featLabels)

    testVec = [0,1]                                        #测试数据

    result = classify(myTree, featLabels, testVec)

    if result == 'yes':

        print('放贷')

    if result == 'no':

        print('不放贷')

这里只增加了classify函数,用于决策树分类。输入测试数据[0,1],它代表没有房子,但是有工作,分类结果如下所示:

机器学习实战教程(三):决策树实战篇(c)_第1张图片
免费视频教程:www.mlxs.top      

看到这里,细心的朋友可能就会问了,每次做预测都要训练一次决策树?这也太麻烦了吧?有什么好的解决吗?

五、决策树的存储

构造决策树是很耗时的任务,即使处理很小的数据集,如前面的样本数据,也要花费几秒的时间,如果数据集很大,将会耗费很多计算时间。然而用创建好的决策树解决分类问题,则可以很快完成。因此,为了节省计算时间,最好能够在每次执行分类时调用已经构造好的决策树。为了解决这个问题,需要使用Python模块pickle序列化对象。序列化对象可以在磁盘上保存对象,并在需要的时候读取出来。

假设我们已经得到决策树{'有自己的房子': {0: {'有工作': {0: 'no', 1: 'yes'}}, 1: 'yes'}},使用pickle.dump存储决策树。

# -*- coding: UTF-8 -*-

import pickle

"""

函数说明:存储决策树

Parameters:

    inputTree - 已经生成的决策树

    filename - 决策树的存储文件名

Returns:

    无

Author:

    Jack Cui

Modify:

    2017-07-25

"""

def storeTree(inputTree, filename):

    with open(filename, 'wb') as fw:

        pickle.dump(inputTree, fw)


if __name__ == '__main__':

    myTree = {'有自己的房子': {0: {'有工作': {0: 'no', 1: 'yes'}}, 1: 'yes'}}

    storeTree(myTree, 'classifierStorage.txt')

运行代码,在该Python文件的相同目录下,会生成一个名为classifierStorage.txt的txt文件,这个文件二进制存储着我们的决策树。我们可以使用sublime txt打开看下存储结果。

机器学习实战教程(三):决策树实战篇(c)_第2张图片
免费视频教程:www.mlxs.top    

看不懂?没错,因为这个是个二进制存储的文件,我们也无需看懂里面的内容,会存储,会用即可。那么问题来了。将决策树存储完这个二进制文件,然后下次使用的话,怎么用呢?

很简单使用pickle.load进行载入即可,编写代码如下:

# -*- coding: UTF-8 -*-

import pickle

"""

函数说明:读取决策树

Parameters:

    filename - 决策树的存储文件名

Returns:

    pickle.load(fr) - 决策树字典

Author:

    Jack Cui

Modify:

    2017-07-25

"""

def grabTree(filename):

    fr = open(filename, 'rb')

    return pickle.load(fr)

if __name__ == '__main__':

    myTree = grabTree('classifierStorage.txt')

    print(myTree)

如果在该Python文件的相同目录下,有一个名为classifierStorage.txt的文件,那么我们就可以运行上述代码,运行结果如下图所示:

机器学习实战教程(三):决策树实战篇(c)_第3张图片
免费视频教程:www.mlxs.top    

从上述结果中,我们可以看到,我们顺利加载了存储决策树的二进制文件。免费视频教程:www.mlxs.top    

你可能感兴趣的:(机器学习实战教程(三):决策树实战篇(c))