xgboost:Ruby的高性能梯度提升

时间:2024-05-01 03:58:44
【文件属性】:

文件名称:xgboost:Ruby的高性能梯度提升

文件大小:45KB

文件格式:ZIP

更新时间:2024-05-01 03:58:44

machine-learning xgboost rubyml Ruby

XGBoost 高性能渐变增强-适用于Ruby 安装 将此行添加到您的应用程序的Gemfile中: gem 'xgb' 在Mac上,还要安装OpenMP: brew install libomp 学习API 准备数据 x = [ [ 1 , 2 ] , [ 3 , 4 ] , [ 5 , 6 ] , [ 7 , 8 ] ] y = [ 1 , 2 , 3 , 4 ] 训练模型 params = { objective : "reg:squarederror" } dtrain = XGBoost :: DMatrix . new ( x , label : y ) booster = XGBoost . train ( params , dtrain ) 预测 dtest = XGBoost :: DMatrix . new ( x ) booster . predict (


【文件预览】:
xgboost-master
----.gitignore(99B)
----CHANGELOG.md(2KB)
----NOTICE.txt(588B)
----LICENSE.txt(11KB)
----.github()
--------workflows()
----README.md(3KB)
----vendor()
--------LICENSE(11KB)
----xgb.gemspec(553B)
----lib()
--------xgboost.rb(5KB)
--------xgboost()
--------xgb.rb(42B)
----Gemfile(118B)
----Rakefile(1KB)
----test()
--------cv_test.rb(2KB)
--------dmatrix_test.rb(2KB)
--------support()
--------regressor_test.rb(2KB)
--------train_test.rb(2KB)
--------classifier_test.rb(3KB)
--------test_helper.rb(2KB)
--------booster_test.rb(2KB)
--------ranker_test.rb(833B)

网友评论