1. table全反选 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 </head> 7 <body> 8 <button class="all" onc ...
分类:
Web程序 时间:
2017-06-18 15:09:41
阅读次数:
205
Two little greedy bears have found two pieces of cheese in the forest of weight a and b grams, correspondingly. The bears are so greedy that they are ...
分类:
其他好文 时间:
2017-06-16 18:32:45
阅读次数:
356
Ensemble Learning and Random Forest ...
分类:
其他好文 时间:
2017-06-09 23:31:57
阅读次数:
433
题目描述 Once in a forest, there lived N aggressive monkeys. At the beginning, they each does things in its own way and none of them knows each other. But ...
分类:
其他好文 时间:
2017-06-09 10:08:54
阅读次数:
191
A Walk Through the Forest Problem Description Jimmy experiences a lot of stress at work these days, especially since his accident made working difficu ...
分类:
其他好文 时间:
2017-06-01 10:33:26
阅读次数:
241
在得出random forest 模型后,评估参数重要性 importance() 示例如下 特征重要性评价标准 %IncMSE 是 increase in MSE。就是对每一个变量 比如 X1 随机赋值, 如果 X1重要的话, 预测的误差会增大,所以 误差的增加就等同于准确性的减少,所以MeanD ...
分类:
其他好文 时间:
2017-05-23 20:33:36
阅读次数:
412
随机森林非常像《机器学习实践》里面提到过的那个AdaBoost算法,但区别在于它没有迭代,还有就是森林里的树长度不限制。 因为它是没有迭代过程的,不像AdaBoost那样需要迭代,不断更新每个样本以及子分类器的权重。因此模型相对简单点,不容易出现过拟合。 ...
分类:
其他好文 时间:
2017-05-20 22:35:36
阅读次数:
237
1 # 每次grep都显示出行号示出行号 2 alias grep="grep -n" 3 4 # grep反向选择并显示行号显示行号 5 alias vgrep="grep -n -v" 6 7 # 以进程树结构显示结构显示 8 #ialias ps="ps --forest" 9 10 # 显示... ...
分类:
其他好文 时间:
2017-05-18 17:27:48
阅读次数:
159
曾经在看用RF和GBDT的时候,以为是非常相似的两个算法,都是属于集成算法,可是细致研究之后,发现他们根本全然不同。以下总结基本的一些不同点 Random Forest: bagging (你懂得。原本叫Bootstrap aggregating) Recall that the key to ba ...
分类:
其他好文 时间:
2017-05-16 20:49:16
阅读次数:
291
Github使用小结git小结 1.ubuntu下安装git环境ubuntu 16.04已经自带git ,可以通过下列命令进行安装与检测是否成功安装sudo apt-get inst all git //安装 //git命令出现代表安装成功(为考证) root@forest-E351:/# git ... ...
分类:
其他好文 时间:
2017-05-12 00:14:23
阅读次数:
189