随机森林
带有详细注释的1500行的RandomForests简单C ++实现。 无依赖性,支持回归和分类。
快速开始
从下载MNIST数据集,并在某些目录中解压缩Train&test数据
git clone
cd RandomForests并制作
运行以下命令: ./RandomForests mnist_train_image_file_path mnist_train_label_file_path mnist_test_image_file_path mnist_test_label_file_path
更多的
打开main.cpp文件,然后根据需要进行修改。 在RandomForest.h中,可以更改一些参数。 输入样本是一个矩阵,每一行都是一个样本。
2022-06-06 18:51:53
14KB
C++
1