-
RandomForest-CPP是一款基于CPP实现的快速RandomForest工具
资源介绍
随机森林(C ++)
介绍
用C ++编写的Random Forests的实现。 速度和性能类似于sklearn版本。
建造
我只是使用标准库,而没有任何第三类库。
cd build
cmake ../
make -j4
载入资料
火车数据文件的格式类似于data/debug.txt ,它是一个稀疏矩阵。 测试数据的格式类似于data/debug_test.txt 。
火车
参数:
* @param(int) nEstimators The number of trees in the forest. Default: 10
* @param(string) criterion The function to measure the quality of a split.
* Supported criteria are “gini” for the Gini impurity a
- 上一篇: RFclass.m(随机森林算法)
- 下一篇: matlab-随机森林代码-mac_windows