matlab精度检验代码-random_forest:random_forest

时间:2024-06-10 21:30:54
【文件属性】:

文件名称:matlab精度检验代码-random_forest:random_forest

文件大小:29KB

文件格式:ZIP

更新时间:2024-06-10 21:30:54

系统开源

matlab精度检验代码随机森林 **这是从的Stochastic_Bosque代码派生的 **他们声称该代码已获得许可,但是拥有专有的故障代码是不合理的:)因此,我使它可以工作并作为开源发布。 **这是基于C ++的低级购物车树实现的非常有效的代码。 **但是原始代码有一些正常运行的流程。 这些都经过检查,并添加了一些具有额外性能的其他功能。 **如果您有一个包含并行处理工具箱的matlab发行版,则可以尝试使用parfor而不是在random_forests.m中使用for **要了解用法,请参考test.m,在使用test.m之前,您需要运行config.m以将库包含到路径中。 ** 如果你有任何问题: 注意:对于某些机器,您可能需要重新编译有关机器配置的mex文件 示例运行 random_indices = randperm(150,150); train_x = inputs(random_indices(1:80),:); test_x = inputs(random_indices(81:150),:); train_y = outputs(random_indices(


【文件预览】:
random_forest-master
----config.m~(35B)
----utils()
--------normalize_data.m(438B)
--------zscore_normalize_data.m(131B)
----config.m(63B)
----Random_Forests()
--------eval_RF.m(1KB)
--------train_RF.m(3KB)
--------cal_accuracy.m(86B)
--------cartree()
--------ancillary()
----read_data.m(1KB)
----README.md(4KB)
----iris.txt(4KB)
----test.m(907B)

网友评论