前言 提到森林,就不得不联想到树,因为正是一棵棵的树构成了庞大的森林,而在本篇文章中的树,指的就是Decision Tree-----决策树。随机森林就是一棵棵决策树的组合,也就是说随机森林=boosting+决策树,这样就好理解多了吧,再来说说GBDT,GBDT全称是Gradie
前言
提到森林,就不得不联想到树,因为正是一棵棵的树构成了庞大的森林,而在本篇文章中的”树“,指的就是Decision Tree-----决策树。随机森林就是一棵棵决策树的组合,也就是说随机森林=boosting+决策树,这样就好理解多了吧,再来说说GBDT,GBDT全称是Gradient Boosting Decision Tree,就是梯度提升决策树,与随机森林的思想很像,但是比随机森林稍稍的难一点,当然效果相对于前者而言,也会好许多。由于本人才疏学浅,本文只会详细讲述Random Forest算法的部分,至于GBDT我会给出一小段篇幅做介绍引导,读者能够如果有兴趣的话,可以自行学习。
随机森林算法
决策树
要想理解随机森林算法,就不得不提决策树,什么是决策树,如何构造决策树,简单的回答就是数据的分类以树形结构的方式所展现,每个子分支都代表着不同的分类情况,比如下面的这个图所示:
当然决策树的每个节点分支不一定是三元的,可以有2个或者更多。分类的终止条件为,没有可以再拿来分类的属性条件或者说分到的数据的分类已经完全一致的情况。决策树分类的标准和依据是什么呢,下面介绍主要的2种划分标准。
1、信息增益。这是ID3算法系列所用的方法,C4.5算法在这上面做了少许的改进,用信息增益率来作为划分的标准,可以稍稍减小数据过于拟合的缺点。
2、基尼指数。这是CART分类回归树所用的方法。也是类似于信息增益的一个定义,最终都是根据数据划分后的纯度来做比较,这个纯度,你也可以理解为熵的变化,当然我们所希望的情况就是分类后数据的纯度更纯,也就是说,前后划分分类之后的熵的差越大越好。不过CART算法比较好的一点是树构造好后,还有剪枝的操作,剪枝操作的种类就比较多了,我之前在实现CART算法时用的是代价复杂度的剪枝方法。
这2种决策算法在我之前的博文中已经有所提及,不理解的可以点击我的ID3系列算法介绍和我的CART分类回归树算法。
Boosting
原本不打算将Boosting单独拉出来讲的,后来想想还是有很多内容可谈的。Boosting本身不是一种算法,他更应该说是一种思想,首先对数据构造n个弱分类器,最后通过组合n个弱分类器对于某个数据的判断结果作为最终的分类结果,就变成了一个强分类器,效果自然要好过单一分类器的分类效果。他可以理解为是一种提升算法,举一个比较常见的Boosting思想的算法AdaBoost,他在训练每个弱分类器的时候,提高了对于之前分错数据的权重值,最终能够组成一批相互互补的分类器集合。详细可以查看我的AdaBoost算法学习。
OK,2个重要的概念都已经介绍完毕,终于可以介绍主角Random Forest的出现了,正如前言中所说Random Forest=Decision Trees + Boosting,这里的每个弱分类器就是一个决策树了,不过这里的决策树都是二叉树,就是只有2个孩子分支,自然我立刻想到的做法就是用CART算法来构建,因为人家算法就是二元分支的。随机算法,随机算法,当然重在随机2个字上面,下面是2个方面体现了随机性。对于数据样本的采集量,比如我数据由100条,我可以每次随机取出其中的20条,作为我构造决策树的源数据,采取又放回的方式,并不是第一次抽到的数据,第二次不能重复,第二随机性体现在对于数据属性的随机采集,比如一行数据总共有10个特征属性,我每次随机采用其中的4个。正是由于对于数据的行压缩和列压缩,使得数据的随机性得以保证,就很难出现之前的数据过拟合的问题了,也就不需要在决策树最后进行剪枝操作了,这个是与一般的CART算法所不同的,尤其需要注意。
下面是随机森林算法的构造过程:
1、通过给定的原始数据,选出其中部分数据进行决策树的构造,数据选取是”有放回“的过程,我在这里用的是CART分类回归树。
2、随机森林构造完成之后,给定一组测试数据,使得每个分类器对其结果分类进行评估,最后取评估结果的众数最为最终结果。
算法非常的好理解,在Boosting算法和决策树之上做了一个集成,下面给出算法的实现,很多资料上只有大篇幅的理论,我还是希望能带给大家一点实在的东西。
随机算法的实现
输入数据(之前决策树算法时用过的)input.txt:
Rid Age Income Student CreditRating BuysComputer 1 Youth High No Fair No 2 Youth High No Excellent No 3 MiddleAged High No Fair Yes 4 Senior Medium No Fair Yes 5 Senior Low Yes Fair Yes 6 Senior Low Yes Excellent No 7 MiddleAged Low Yes Excellent Yes 8 Youth Medium No Fair No 9 Youth Low Yes Fair Yes 10 Senior Medium Yes Fair Yes 11 Youth Medium Yes Excellent Yes 12 MiddleAged Medium No Excellent Yes 13 MiddleAged High Yes Fair Yes 14 Senior Medium No Excellent No
树节点类TreeNode.java:
package DataMining_RandomForest; import java.util.ArrayList; /** * 回归分类树节点 * * @author lyq * */ public class TreeNode { // 节点属性名字 private String attrName; // 节点索引标号 private int nodeIndex; //包含的叶子节点数 private int leafNum; // 节点误差率 private double alpha; // 父亲分类属性值 private String parentAttrValue; // 孩子节点 private TreeNode[] childAttrNode; // 数据记录索引 private ArrayList<String> dataIndex; public String getAttrName() { return attrName; } public void setAttrName(String attrName) { this.attrName = attrName; } public int getNodeIndex() { return nodeIndex; } public void setNodeIndex(int nodeIndex) { this.nodeIndex = nodeIndex; } public double getAlpha() { return alpha; } public void setAlpha(double alpha) { this.alpha = alpha; } public String getParentAttrValue() { return parentAttrValue; } public void setParentAttrValue(String parentAttrValue) { this.parentAttrValue = parentAttrValue; } public TreeNode[] getChildAttrNode() { return childAttrNode; } public void setChildAttrNode(TreeNode[] childAttrNode) { this.childAttrNode = childAttrNode; } public ArrayList<String> getDataIndex() { return dataIndex; } public void setDataIndex(ArrayList<String> dataIndex) { this.dataIndex = dataIndex; } public int getLeafNum() { return leafNum; } public void setLeafNum(int leafNum) { this.leafNum = leafNum; } }决策树类DecisionTree.java:
package DataMining_RandomForest; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; /** * 决策树 * * @author lyq * */ public class DecisionTree { // 树的根节点 TreeNode rootNode; // 数据的属性列名称 String[] featureNames; // 这棵树所包含的数据 ArrayList<String[]> datas; // 决策树构造的的工具类 CARTTool tool; public DecisionTree(ArrayList<String[]> datas) { this.datas = datas; this.featureNames = datas.get(0); tool = new CARTTool(datas); // 通过CART工具类进行决策树的构建,并返回树的根节点 rootNode = tool.startBuildingTree(); } /** * 根据给定的数据特征描述进行类别的判断 * * @param features * @return */ public String decideClassType(String features) { String classType = ""; // 查询属性组 String[] queryFeatures; // 在本决策树中对应的查询的属性值描述 ArrayList<String[]> featureStrs; featureStrs = new ArrayList<>(); queryFeatures = features.split(","); String[] array; for (String name : featureNames) { for (String featureValue : queryFeatures) { array = featureValue.split("="); // 将对应的属性值加入到列表中 if (array[0].equals(name)) { featureStrs.add(array); } } } // 开始从根据节点往下递归搜索 classType = recusiveSearchClassType(rootNode, featureStrs); return classType; } /** * 递归搜索树,查询属性的分类类别 * * @param node * 当前搜索到的节点 * @param remainFeatures * 剩余未判断的属性 * @return */ private String recusiveSearchClassType(TreeNode node, ArrayList<String[]> remainFeatures) { String classType = null; // 如果节点包含了数据的id索引,说明已经分类到底了 if (node.getDataIndex() != null && node.getDataIndex().size() > 0) { classType = judgeClassType(node.getDataIndex()); return classType; } // 取出剩余属性中的一个匹配属性作为当前的判断属性名称 String[] currentFeature = null; for (String[] featureValue : remainFeatures) { if (node.getAttrName().equals(featureValue[0])) { currentFeature = featureValue; break; } } for (TreeNode childNode : node.getChildAttrNode()) { // 寻找子节点中属于此属性值的分支 if (childNode.getParentAttrValue().equals(currentFeature[1])) { remainFeatures.remove(currentFeature); classType = recusiveSearchClassType(childNode, remainFeatures); // 如果找到了分类结果,则直接挑出循环 break; }else{ //进行第二种情况的判断加上!符号的情况 String value = childNode.getParentAttrValue(); if(value.charAt(0) == '!'){ //去掉第一个!字符 value = value.substring(1, value.length()); if(!value.equals(currentFeature[1])){ remainFeatures.remove(currentFeature); classType = recusiveSearchClassType(childNode, remainFeatures); break; } } } } return classType; } /** * 根据得到的数据行分类进行类别的决策 * * @param dataIndex * 根据分类的数据索引号 * @return */ public String judgeClassType(ArrayList<String> dataIndex) { // 结果类型值 String resultClassType = ""; String classType = ""; int count = 0; int temp = 0; Map<String, Integer> type2Num = new HashMap<String, Integer>(); for (String index : dataIndex) { temp = Integer.parseInt(index); // 取最后一列的决策类别数据 classType = datas.get(temp)[featureNames.length - 1]; if (type2Num.containsKey(classType)) { // 如果类别已经存在,则使其计数加1 count = type2Num.get(classType); count++; } else { count = 1; } type2Num.put(classType, count); } // 选出其中类别支持计数最多的一个类别值 count = -1; for (Map.Entry entry : type2Num.entrySet()) { if ((int) entry.getValue() > count) { count = (int) entry.getValue(); resultClassType = (String) entry.getKey(); } } return resultClassType; } }随机森林算法工具类RandomForestTool.java:
package DataMining_RandomForest; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import java.util.Random; /** * 随机森林算法工具类 * * @author lyq * */ public class RandomForestTool { // 测试数据文件地址 private String filePath; // 决策树的样本占总数的占比率 private double sampleNumRatio; // 样本数据的采集特征数量占总特征的比例 private double featureNumRatio; // 决策树的采样样本数 private int sampleNum; // 样本数据的采集采样特征数 private int featureNum; // 随机森林中的决策树的数目,等于总的数据数/用于构造每棵树的数据的数量 private int treeNum; // 随机数产生器 private Random random; // 样本数据列属性名称行 private String[] featureNames; // 原始的总的数据 private ArrayList<String[]> totalDatas; // 决策树森林 private ArrayList<DecisionTree> decisionForest; public RandomForestTool(String filePath, double sampleNumRatio, double featureNumRatio) { this.filePath = filePath; this.sampleNumRatio = sampleNumRatio; this.featureNumRatio = featureNumRatio; readDataFile(); } /** * 从文件中读取数据 */ private void readDataFile() { File file = new File(filePath); ArrayList<String[]> dataArray = new ArrayList<String[]>(); try { BufferedReader in = new BufferedReader(new FileReader(file)); String str; String[] tempArray; while ((str = in.readLine()) != null) { tempArray = str.split(" "); dataArray.add(tempArray); } in.close(); } catch (IOException e) { e.getStackTrace(); } totalDatas = dataArray; featureNames = totalDatas.get(0); sampleNum = (int) ((totalDatas.size() - 1) * sampleNumRatio); //算属性数量的时候需要去掉id属性和决策属性,用条件属性计算 featureNum = (int) ((featureNames.length -2) * featureNumRatio); // 算数量的时候需要去掉首行属性名称行 treeNum = (totalDatas.size() - 1) / sampleNum; } /** * 产生决策树 */ private DecisionTree produceDecisionTree() { int temp = 0; DecisionTree tree; String[] tempData; //采样数据的随机行号组 ArrayList<Integer> sampleRandomNum; //采样属性特征的随机列号组 ArrayList<Integer> featureRandomNum; ArrayList<String[]> datas; sampleRandomNum = new ArrayList<>(); featureRandomNum = new ArrayList<>(); datas = new ArrayList<>(); for(int i=0; i<sampleNum;){ temp = random.nextInt(totalDatas.size()); //如果是行首属性名称行,则跳过 if(temp == 0){ continue; } if(!sampleRandomNum.contains(temp)){ sampleRandomNum.add(temp); i++; } } for(int i=0; i<featureNum;){ temp = random.nextInt(featureNames.length); //如果是第一列的数据id号或者是决策属性列,则跳过 if(temp == 0 || temp == featureNames.length-1){ continue; } if(!featureRandomNum.contains(temp)){ featureRandomNum.add(temp); i++; } } String[] singleRecord; String[] headCulumn = null; // 获取随机数据行 for(int dataIndex: sampleRandomNum){ singleRecord = totalDatas.get(dataIndex); //每行的列数=所选的特征数+id号 tempData = new String[featureNum+2]; headCulumn = new String[featureNum+2]; for(int i=0,k=1; i<featureRandomNum.size(); i++,k++){ temp = featureRandomNum.get(i); headCulumn[k] = featureNames[temp]; tempData[k] = singleRecord[temp]; } //加上id列的信息 headCulumn[0] = featureNames[0]; //加上决策分类列的信息 headCulumn[featureNum+1] = featureNames[featureNames.length-1]; tempData[featureNum+1] = singleRecord[featureNames.length-1]; //加入此行数据 datas.add(tempData); } //加入行首列出现名称 datas.add(0, headCulumn); //对筛选出的数据重新做id分配 temp = 0; for(String[] array: datas){ //从第2行开始赋值 if(temp > 0){ array[0] = temp + ""; } temp++; } tree = new DecisionTree(datas); return tree; } /** * 构造随机森林 */ public void constructRandomTree() { DecisionTree tree; random = new Random(); decisionForest = new ArrayList<>(); System.out.println("下面是随机森林中的决策树:"); // 构造决策树加入森林中 for (int i = 0; i < treeNum; i++) { System.out.println("\n决策树" + (i+1)); tree = produceDecisionTree(); decisionForest.add(tree); } } /** * 根据给定的属性条件进行类别的决策 * * @param features * 给定的已知的属性描述 * @return */ public String judgeClassType(String features) { // 结果类型值 String resultClassType = ""; String classType = ""; int count = 0; Map<String, Integer> type2Num = new HashMap<String, Integer>(); for (DecisionTree tree : decisionForest) { classType = tree.decideClassType(features); if (type2Num.containsKey(classType)) { // 如果类别已经存在,则使其计数加1 count = type2Num.get(classType); count++; } else { count = 1; } type2Num.put(classType, count); } // 选出其中类别支持计数最多的一个类别值 count = -1; for (Map.Entry entry : type2Num.entrySet()) { if ((int) entry.getValue() > count) { count = (int) entry.getValue(); resultClassType = (String) entry.getKey(); } } return resultClassType; } }CART算法工具类CARTTool.java:
package DataMining_RandomForest; import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedList; import java.util.Queue; /** * CART分类回归树算法工具类 * * @author lyq * */ public class CARTTool { // 类标号的值类型 private final String YES = "Yes"; private final String NO = "No"; // 所有属性的类型总数,在这里就是data源数据的列数 private int attrNum; private String filePath; // 初始源数据,用一个二维字符数组存放模仿表格数据 private String[][] data; // 数据的属性行的名字 private String[] attrNames; // 每个属性的值所有类型 private HashMap<String, ArrayList<String>> attrValue; public CARTTool(ArrayList<String[]> dataArray) { attrValue = new HashMap<>(); readData(dataArray); } /** * 根据随机选取的样本数据进行初始化 * @param dataArray * 已经读入的样本数据 */ public void readData(ArrayList<String[]> dataArray) { data = new String[dataArray.size()][]; dataArray.toArray(data); attrNum = data[0].length; attrNames = data[0]; } /** * 首先初始化每种属性的值的所有类型,用于后面的子类熵的计算时用 */ public void initAttrValue() { ArrayList<String> tempValues; // 按照列的方式,从左往右找 for (int j = 1; j < attrNum; j++) { // 从一列中的上往下开始寻找值 tempValues = new ArrayList<>(); for (int i = 1; i < data.length; i++) { if (!tempValues.contains(data[i][j])) { // 如果这个属性的值没有添加过,则添加 tempValues.add(data[i][j]); } } // 一列属性的值已经遍历完毕,复制到map属性表中 attrValue.put(data[0][j], tempValues); } } /** * 计算机基尼指数 * * @param remainData * 剩余数据 * @param attrName * 属性名称 * @param value * 属性值 * @param beLongValue * 分类是否属于此属性值 * @return */ public double computeGini(String[][] remainData, String attrName, String value, boolean beLongValue) { // 实例总数 int total = 0; 【本文来自鸿网互联 (http://www.68idc.cn)】 // 正实例数 int posNum = 0; // 负实例数 int negNum = 0; // 基尼指数 double gini = 0; // 还是按列从左往右遍历属性 for (int j = 1; j < attrNames.length; j++) { // 找到了指定的属性 if (attrName.equals(attrNames[j])) { for (int i = 1; i < remainData.length; i++) { // 统计正负实例按照属于和不属于值类型进行划分 if ((beLongValue && remainData[i][j].equals(value)) || (!beLongValue && !remainData[i][j].equals(value))) { if (remainData[i][attrNames.length - 1].equals(YES)) { // 判断此行数据是否为正实例 posNum++; } else { negNum++; } } } } } total = posNum + negNum; double posProbobly = (double) posNum / total; double negProbobly = (double) negNum / total; gini = 1 - posProbobly * posProbobly - negProbobly * negProbobly; // 返回计算基尼指数 return gini; } /** * 计算属性划分的最小基尼指数,返回最小的属性值划分和最小的基尼指数,保存在一个数组中 * * @param remainData * 剩余谁 * @param attrName * 属性名称 * @return */ public String[] computeAttrGini(String[][] remainData, String attrName) { String[] str = new String[2]; // 最终该属性的划分类型值 String spiltValue = ""; // 临时变量 int tempNum = 0; // 保存属性的值划分时的最小的基尼指数 double minGini = Integer.MAX_VALUE; ArrayList<String> valueTypes = attrValue.get(attrName); // 属于此属性值的实例数 HashMap<String, Integer> belongNum = new HashMap<>(); for (String string : valueTypes) { // 重新计数的时候,数字归0 tempNum = 0; // 按列从左往右遍历属性 for (int j = 1; j < attrNames.length; j++) { // 找到了指定的属性 if (attrName.equals(attrNames[j])) { for (int i = 1; i < remainData.length; i++) { // 统计正负实例按照属于和不属于值类型进行划分 if (remainData[i][j].equals(string)) { tempNum++; } } } } belongNum.put(string, tempNum); } double tempGini = 0; double posProbably = 1.0; double negProbably = 1.0; for (String string : valueTypes) { tempGini = 0; posProbably = 1.0 * belongNum.get(string) / (remainData.length - 1); negProbably = 1 - posProbably; tempGini += posProbably * computeGini(remainData, attrName, string, true); tempGini += negProbably * computeGini(remainData, attrName, string, false); if (tempGini < minGini) { minGini = tempGini; spiltValue = string; } } str[0] = spiltValue; str[1] = minGini + ""; return str; } public void buildDecisionTree(TreeNode node, String parentAttrValue, String[][] remainData, ArrayList<String> remainAttr, boolean beLongParentValue) { // 属性划分值 String valueType = ""; // 划分属性名称 String spiltAttrName = ""; double minGini = Integer.MAX_VALUE; double tempGini = 0; // 基尼指数数组,保存了基尼指数和此基尼指数的划分属性值 String[] giniArray; if (beLongParentValue) { node.setParentAttrValue(parentAttrValue); } else { node.setParentAttrValue("!" + parentAttrValue); } if (remainAttr.size() == 0) { if (remainData.length > 1) { ArrayList<String> indexArray = new ArrayList<>(); for (int i = 1; i < remainData.length; i++) { indexArray.add(remainData[i][0]); } node.setDataIndex(indexArray); } // System.out.println("attr remain null"); return; } for (String str : remainAttr) { giniArray = computeAttrGini(remainData, str); tempGini = Double.parseDouble(giniArray[1]); if (tempGini < minGini) { spiltAttrName = str; minGini = tempGini; valueType = giniArray[0]; } } // 移除划分属性 remainAttr.remove(spiltAttrName); node.setAttrName(spiltAttrName); // 孩子节点,分类回归树中,每次二元划分,分出2个孩子节点 TreeNode[] childNode = new TreeNode[2]; String[][] rData; boolean[] bArray = new boolean[] { true, false }; for (int i = 0; i < bArray.length; i++) { // 二元划分属于属性值的划分 rData = removeData(remainData, spiltAttrName, valueType, bArray[i]); boolean sameClass = true; ArrayList<String> indexArray = new ArrayList<>(); for (int k = 1; k < rData.length; k++) { indexArray.add(rData[k][0]); // 判断是否为同一类的 if (!rData[k][attrNames.length - 1] .equals(rData[1][attrNames.length - 1])) { // 只要有1个不相等,就不是同类型的 sameClass = false; break; } } childNode[i] = new TreeNode(); if (!sameClass) { // 创建新的对象属性,对象的同个引用会出错 ArrayList<String> rAttr = new ArrayList<>(); for (String str : remainAttr) { rAttr.add(str); } buildDecisionTree(childNode[i], valueType, rData, rAttr, bArray[i]); } else { String pAtr = (bArray[i] ? valueType : "!" + valueType); childNode[i].setParentAttrValue(pAtr); childNode[i].setDataIndex(indexArray); } } node.setChildAttrNode(childNode); } /** * 属性划分完毕,进行数据的移除 * * @param srcData * 源数据 * @param attrName * 划分的属性名称 * @param valueType * 属性的值类型 * @parame beLongValue 分类是否属于此值类型 */ private String[][] removeData(String[][] srcData, String attrName, String valueType, boolean beLongValue) { String[][] desDataArray; ArrayList<String[]> desData = new ArrayList<>(); // 待删除数据 ArrayList<String[]> selectData = new ArrayList<>(); selectData.add(attrNames); // 数组数据转化到列表中,方便移除 for (int i = 0; i < srcData.length; i++) { desData.add(srcData[i]); } // 还是从左往右一列列的查找 for (int j = 1; j < attrNames.length; j++) { if (attrNames[j].equals(attrName)) { for (int i = 1; i < desData.size(); i++) { if (desData.get(i)[j].equals(valueType)) { // 如果匹配这个数据,则移除其他的数据 selectData.add(desData.get(i)); } } } } if (beLongValue) { desDataArray = new String[selectData.size()][]; selectData.toArray(desDataArray); } else { // 属性名称行不移除 selectData.remove(attrNames); // 如果是划分不属于此类型的数据时,进行移除 desData.removeAll(selectData); desDataArray = new String[desData.size()][]; desData.toArray(desDataArray); } return desDataArray; } /** * 构造分类回归树,并返回根节点 * @return */ public TreeNode startBuildingTree() { initAttrValue(); ArrayList<String> remainAttr = new ArrayList<>(); // 添加属性,除了最后一个类标号属性 for (int i = 1; i < attrNames.length - 1; i++) { remainAttr.add(attrNames[i]); } TreeNode rootNode = new TreeNode(); buildDecisionTree(rootNode, "", data, remainAttr, false); setIndexAndAlpah(rootNode, 0, false); showDecisionTree(rootNode, 1); return rootNode; } /** * 显示决策树 * * @param node * 待显示的节点 * @param blankNum * 行空格符,用于显示树型结构 */ private void showDecisionTree(TreeNode node, int blankNum) { System.out.println(); for (int i = 0; i < blankNum; i++) { System.out.print(" "); } System.out.print("--"); // 显示分类的属性值 if (node.getParentAttrValue() != null && node.getParentAttrValue().length() > 0) { System.out.print(node.getParentAttrValue()); } else { System.out.print("--"); } System.out.print("--"); if (node.getDataIndex() != null && node.getDataIndex().size() > 0) { String i = node.getDataIndex().get(0); System.out.print("【" + node.getNodeIndex() + "】类别:" + data[Integer.parseInt(i)][attrNames.length - 1]); System.out.print("["); for (String index : node.getDataIndex()) { System.out.print(index + ", "); } System.out.print("]"); } else { // 递归显示子节点 System.out.print("【" + node.getNodeIndex() + ":" + node.getAttrName() + "】"); if (node.getChildAttrNode() != null) { for (TreeNode childNode : node.getChildAttrNode()) { showDecisionTree(childNode, 2 * blankNum); } } else { System.out.print("【 Child Null】"); } } } /** * 为节点设置序列号,并计算每个节点的误差率,用于后面剪枝 * * @param node * 开始的时候传入的是根节点 * @param index * 开始的索引号,从1开始 * @param ifCutNode * 是否需要剪枝 */ private void setIndexAndAlpah(TreeNode node, int index, boolean ifCutNode) { TreeNode tempNode; // 最小误差代价节点,即将被剪枝的节点 TreeNode minAlphaNode = null; double minAlpah = Integer.MAX_VALUE; Queue<TreeNode> nodeQueue = new LinkedList<TreeNode>(); nodeQueue.add(node); while (nodeQueue.size() > 0) { index++; // 从队列头部获取首个节点 tempNode = nodeQueue.poll(); tempNode.setNodeIndex(index); if (tempNode.getChildAttrNode() != null) { for (TreeNode childNode : tempNode.getChildAttrNode()) { nodeQueue.add(childNode); } computeAlpha(tempNode); if (tempNode.getAlpha() < minAlpah) { minAlphaNode = tempNode; minAlpah = tempNode.getAlpha(); } else if (tempNode.getAlpha() == minAlpah) { // 如果误差代价值一样,比较包含的叶子节点个数,剪枝有多叶子节点数的节点 if (tempNode.getLeafNum() > minAlphaNode.getLeafNum()) { minAlphaNode = tempNode; } } } } if (ifCutNode) { // 进行树的剪枝,让其左右孩子节点为null minAlphaNode.setChildAttrNode(null); } } /** * 为非叶子节点计算误差代价,这里的后剪枝法用的是CCP代价复杂度剪枝 * * @param node * 待计算的非叶子节点 */ private void computeAlpha(TreeNode node) { double rt = 0; double Rt = 0; double alpha = 0; // 当前节点的数据总数 int sumNum = 0; // 最少的偏差数 int minNum = 0; ArrayList<String> dataIndex; ArrayList<TreeNode> leafNodes = new ArrayList<>(); addLeafNode(node, leafNodes); node.setLeafNum(leafNodes.size()); for (TreeNode attrNode : leafNodes) { dataIndex = attrNode.getDataIndex(); int num = 0; sumNum += dataIndex.size(); for (String s : dataIndex) { // 统计分类数据中的正负实例数 if (data[Integer.parseInt(s)][attrNames.length - 1].equals(YES)) { num++; } } minNum += num; // 取小数量的值部分 if (1.0 * num / dataIndex.size() > 0.5) { num = dataIndex.size() - num; } rt += (1.0 * num / (data.length - 1)); } //同样取出少偏差的那部分 if (1.0 * minNum / sumNum > 0.5) { minNum = sumNum - minNum; } Rt = 1.0 * minNum / (data.length - 1); alpha = 1.0 * (Rt - rt) / (leafNodes.size() - 1); node.setAlpha(alpha); } /** * 筛选出节点所包含的叶子节点数 * * @param node * 待筛选节点 * @param leafNode * 叶子节点列表容器 */ private void addLeafNode(TreeNode node, ArrayList<TreeNode> leafNode) { ArrayList<String> dataIndex; if (node.getChildAttrNode() != null) { for (TreeNode childNode : node.getChildAttrNode()) { dataIndex = childNode.getDataIndex(); if (dataIndex != null && dataIndex.size() > 0) { // 说明此节点为叶子节点 leafNode.add(childNode); } else { // 如果还是非叶子节点则继续递归调用 addLeafNode(childNode, leafNode); } } } } }测试类Client.java:
package DataMining_RandomForest; import java.text.MessageFormat; /** * 随机森林算法测试场景 * * @author lyq * */ public class Client { public static void main(String[] args) { String filePath = "C:\\Users\\lyq\\Desktop\\icon\\input.txt"; String queryStr = "Age=Youth,Income=Low,Student=No,CreditRating=Fair"; String resultClassType = ""; // 决策树的样本占总数的占比率 double sampleNumRatio = 0.4; // 样本数据的采集特征数量占总特征的比例 double featureNumRatio = 0.5; RandomForestTool tool = new RandomForestTool(filePath, sampleNumRatio, featureNumRatio); tool.constructRandomTree(); resultClassType = tool.judgeClassType(queryStr); System.out.println(); System.out .println(MessageFormat.format( "查询属性描述{0},预测的分类结果为BuysCompute:{1}", queryStr, resultClassType)); } }
算法的输出
下面是随机森林中的决策树: 决策树1 --!--【1:Income】 --Medium--【2】类别:Yes[1, 2, ] --!Medium--【3:Student】 --No--【4】类别:No[3, 5, ] --!No--【5】类别:Yes[4, ] 决策树2 --!--【1:Student】 --No--【2】类别:No[1, 3, ] --!No--【3】类别:Yes[2, 4, 5, ] 查询属性描述Age=Youth,Income=Low,Student=No,CreditRating=Fair,预测的分类结果为BuysCompute:No
输出的结果决策树建议从左往右看,从上往下,【】符号表示一个节点,---XX---表示属性值的划分,你就应该能看懂这棵树了,在console上想展示漂亮的树形效果的确很难。。。这里说一个算法的重大不足,数据太少,导致选择的样本数据不足,所选属性太少,,构造的决策树数量过少,自然分类的准确率不见得会有多准,博友只要能领会代码中所表达的算法的思想即可。
GBDT
下面来说说随机森林的兄弟算法GBDT,梯度提升决策树,他有很多的决策树,他也有组合的思想,但是他不是随机森林算法2,GBDT的关键在于Gradient Boosting,梯度提升。这个词语理解起来就不容易了。学术的描述,每一次建立模型是在之前建立模型的损失函数的梯度下降方向。GBDT的核心在于,每一棵树学的是之前所有树结论和的残差,这个残差你可以理解为与预测值的差值。举个例子:比如预测张三的年龄,张三的真实年龄18岁,第一棵树预测张的年龄12岁,此时残差为18-12=6岁,因此在第二棵树中,我们把张的年龄作为6岁去学习,如果预测成功了,则张的真实年龄就是A树和B树的结果预测值的和,但是如果B预测成了5岁,那么残差就变成了6-5=1岁,那么此时需要构建第三树对1岁做预测,后面一样的道理。每棵树都是对之前失败预测的一个补充,用公式的表达就是如下的这个样子:
F0在这里是初始值,Ti是一棵棵的决策树,不同的问题选择不同的损失函数和初始值。在阿里内部对于此算法的叫法为TreeLink。所以下次听到什么Treelink算法了指的就是梯度提升树算法,其实我在这里省略了很大篇幅的数学推导过程,再加上自己还不是专家,无法彻底解释清数学的部分,所以就没有提及,希望以后有时间可以深入学习此方面的知识。

生成随机数或字母数字字符串的能力在许多情况下都会派上用场。您可以使用它在游戏中的不同位置生成敌人或食物。您还可以使用它向用户建议随机密码或创建文件名来保存文件。我写了一篇关于如何在PHP中生成随机字母数字字符串的教程。我在这篇文章的开头说,几乎没有事件是真正随机的,同样的情况也适用于随机数或字符串生成。在本教程中,我将向您展示如何在JavaScript中生成伪随机字母数字字符串。在JavaScript中生成随机数让我们从生成随机数开始。我想到的第一个方法是Math.random(),它返回一个浮

随机和伪随机的区别在可预测性、重现性、均匀性和安全性等。详细介绍:1、可预测性,随机数是无法被预测的,即使知道了过去的结果也不能准确地预测未来的结果,而伪随机数是可以被预测的,因为它们是通过算法生成的,只要知道了算法和种子,就可以重现生成相同的数列或序列;2、重现性,随机数是不可重现的,每次生成的结果都是独立的,而伪随机数是可重现的,只要使用相同的算法和种子等等。

作为一名Java开发者,学习和使用Spring框架已经是一项必不可少的技能。而随着云计算和微服务的盛行,学习和使用SpringCloud成为了另一个必须要掌握的技能。SpringCloud是一个基于SpringBoot的用于快速构建分布式系统的开发工具集。它为开发者提供了一系列的组件,包括服务注册与发现、配置中心、负载均衡和断路器等,使得开发者在构建微

win7系统自带有备份还原系统的功能,如果之前有给win7系统备份的话,当电脑出现系统故障的时候,我们可以尝试通过win7还原系统修复。那么win7怎么还原系统呢?下面小编就教下大家如何还原win7系统。具体的步骤如下:1、开机在进入Windows系统启动画面之前按下F8键,然后出现系统启动菜单,选择安全模式登陆即可进入。2、进入安全模式之后,点击“开始”→“所有程序”→“附件”→“系统工具”→“系统还原”。3、最后只要选择最近手动设置过的还原点以及其他自动的还原点都可以,但是最好下一步之前点击

随着Web应用程序的需求越来越高,PHP技术在开发领域中变得越来越重要。在PHP开发方面,测试是一个必要的步骤,它可以帮助开发者确保他们创建的代码在各种情况下都可靠和实用。在PHP中,一个流行的测试框架是PHPUnit。PHPUnit是一个基于Junit的测试框架,其目的是创建高质量、可维护和可重复的代码。下面是一些学习使用PHPUnit框架的基础知识和步骤

Python是一种流行的编程语言,广泛应用于数据分析、机器学习、网页开发等领域。在Python中,random模块提供了一个random.randint()函数,用于生成随机整数。本文将介绍如何使用random.randint()函数来生成随机整数,并提供一些代码示例。首先,我们需要导入random模块:importrandom接下来,就可以调用rando

香港中文大学(深圳)吴保元教授课题组和浙江大学秦湛教授课题组联合发表了一篇后门防御领域的文章,已顺利被ICLR2022接收。近年来,后门问题受到人们的广泛关注。随着后门攻击的不断提出,提出针对一般化后门攻击的防御方法变得愈加困难。该论文提出了一个基于分割后门训练过程的后门防御方法。本文揭示了后门攻击就是一个将后门投影到特征空间的端到端监督训练方法。在此基础上,本文分割训练过程来避免后门攻击。该方法与其他后门防御方法进行了对比实验,证明了该方法的有效性。收录会议:ICLR2022文章链接:http

随着win10系统的成熟,微软停止win7的更新和支持,越来越多人选择win10系统使用,打算将自己的win7升级win10系统。不过很多小伙伴不知道win7如何升级win10系统,找不到升级的按键。下面小编教大家一个简单的win7升级win10系统的方法。我们可以借助工具轻松实现win7升级安装win10的方法,具体的操作步骤如下:1、先在电脑上下载安装小鱼一键重装系统工具并打开,关闭电脑的杀毒软件,备份c盘重要资料。然后选择需要安装的win10系统点击安装此系统。2、这个界面选择想要安装的软


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
