anomaly:易于使用的 Ruby 异常检测

时间:2024-06-18 23:34:40
【文件属性】:

文件名称:anomaly:易于使用的 Ruby 异常检测

文件大小:8KB

文件格式:ZIP

更新时间:2024-06-18 23:34:40

Ruby

异常 易于使用的 Ruby 异常检测 安装 将此行添加到应用程序的 Gemfile 中: gem 'anomaly' 入门 假设我们有天气数据,我们想预测天气是否晴朗。 在这个例子中,晴天是非异常,而其他类型的天气(雨、雪等)的日子是异常。 数据看起来像: # [temperature(°F), humidity(%), pressure(in), sunny?(y=0, n=1)] weather_data = [ [ 85 , 68 , 10.4 , 0 ] , [ 88 , 62 , 12.1 , 0 ] , [ 86 , 64 , 13.6 , 0 ] , [ 88 , 90 , 11.1 , 1 ] , ... ] 最后一列必须为 0 表示非异常,1 表示异常。 非异常用于训练检测器,异常和非异常都用于寻找ε的最佳值。 训练检测器 detecto


【文件预览】:
anomaly-master
----.github()
--------workflows()
----LICENSE.txt(1KB)
----anomaly.gemspec(512B)
----lib()
--------anomaly()
--------anomaly.rb(53B)
----Gemfile(102B)
----spec()
--------anomaly()
--------spec_helper.rb(167B)
----Rakefile(741B)
----README.md(3KB)
----.rspec(8B)
----.gitignore(154B)
----CHANGELOG.md(227B)

网友评论