资源简介
iForest具有线性时间复杂度。因为是ensemble的方法,所以可以用在含有海量数据的数据集上面。通常树的数量越多,算法越稳定。由于每棵树都是互相独立生成的,因此可以部署在大规模分布式系统上来加速运算
代码片段和文件信息
function [Mass ElapseTime] = IsolationEstimation(TestData Forest)
%
% F. T. Liu K. M. Ting and Z.-H. Zhou.
% Isolation forest.
% In Proceedings of ICDM pages 413-422 2008.
%
% function IsolationEstimation: estimate test instance mass on isolation forest
%
% Input:
% TestData: test data; nt x d matrix; nt: # of test instance; d: dimension;
% Forest: isolation forest model;
%
% Output:
% Mass: nt x NumTree matrix; mass of test instances;
% ElapseTime: elapsed time;
%
NumInst = size(TestData 1);
Mass = zeros(NumInst Forest.NumTree);
et = cputime;
for k = 1:Forest.NumTree
Mass(: k) = IsolationMass(TestData 1:NumInst Forest.Trees{k 1} zeros(NumInst 1));
end
ElapseTime = cputime - et;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-01-18 03:47 iForest-master\
目录 0 2018-01-18 03:47 iForest-master\Data\
文件 33936 2018-01-18 03:47 iForest-master\Data\breastw_683.csv
文件 12940534 2018-01-18 03:47 iForest-master\Data\http_567497.csv
文件 4041694 2018-01-18 03:47 iForest-master\Data\shuttle_49097.csv
文件 754 2018-01-18 03:47 iForest-master\IsolationEstimation.m
文件 1814 2018-01-18 03:47 iForest-master\IsolationForest.m
文件 1254 2018-01-18 03:47 iForest-master\IsolationMass.m
文件 1988 2018-01-18 03:47 iForest-master\IsolationTree.m
文件 35141 2018-01-18 03:47 iForest-master\LICENSE
文件 1665 2018-01-18 03:47 iForest-master\Measure_AUC.m
文件 514 2018-01-18 03:47 iForest-master\README.md
文件 1299 2018-01-18 03:47 iForest-master\run_iForest.m
相关资源
- 简单二阶互联系统的非线性动力学分
- 手写数字识别-模板匹配法
- Stock_Watson_动态因子分析模型
- 果蝇优化算法优化支持向量回归程序
- 自己做的一个简单GUI扑克纸牌识别-
- multi output SVR
- AR过程的线性建模过程与各种功率谱估
- PCNN TOOLBOX
- plstoolbox.zip
- 中国国家基础地理信息系统GIS数据
- 粒子群微电网优化调度
- 矩阵分析-经典教材-中文版-Roger.A.Ho
- 压缩感知TwIST
- 基于最小错误率的贝叶斯手写数字分
- 最全系统辨识源代码,包括多种最小
- 导弹制导实验
- 画跟踪精确度图的程序.zip
- 重力场大地水准面及重力异常阶次误
- prtools5.2.3工具包
- 脉冲耦合神经网络工具箱PCNN-toolbox
- SVM算法-回归拟合程序.zip
- Kriging代理模型EGO算法.zip
- Matalb实现停车场完整系统
- 总体经验模态分解
- 在一张图上画多个跟踪框.zip
- 大量的有限元法求解偏微分方程的程
- 电力系统稳态潮流计算程序PQ和NR法
- 夜间车牌识别
- emd分解成多个imf分量,通过判断以后
- 心电信号的处理与自动诊断-心电信号
评论
共有 条评论