xgb 0.7.3 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f12fd8cc77963f39c4e2a5580491100b8af1a43b9f89ac82a63671ae59e6a651
4
- data.tar.gz: ef084b0b7685198809718cfb9c6f417b3d9f3c2bdfc9a4032051e9e83c8b0a29
3
+ metadata.gz: a3c5776d18623264345b660a8c69a88f1ceee3138ff25b8b4378702956e393bb
4
+ data.tar.gz: a2656e280e6efeefaac2c70a6cdefc54f700c12023d0e00d47967029d75af8b3
5
5
  SHA512:
6
- metadata.gz: a5b3788792eae0002e82be795628c326fbe30e2c7aca1ca94c26577a1af30f298df27ae15e2112d7d088a8aa168c6ac353212efb5dcb1fdc63e50257260d23a0
7
- data.tar.gz: cbc4a96d4d5898d5a0d023a130fae13216fac42691e22825612054700c629a9474c1bb87c6ccdda5eebc9039e9bb9f7bea43b3b178dd8e6e097f321051da2442
6
+ metadata.gz: fbfc62217eee5ed8e3fca644db86908039f1bc40bb6156e8a219baec5ac4230e1fda9f200b3f991cf6683bcd74323e00c50e5c54468bc02e85f2f8399030c410
7
+ data.tar.gz: 5badc8c673ebae251cef2eaa8e595a1434572737c465e597595c1c323201db01fcc1db862416a6c1a4f87e95ba948dc76ec1851ae3e865fb8c539439340043d9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.8.0 (2023-09-13)
2
+
3
+ - Updated XGBoost to 2.0.0
4
+ - Dropped support for Ruby < 3
5
+
1
6
  ## 0.7.3 (2023-07-24)
2
7
 
3
8
  - Fixed error with `dup` and `clone`
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [XGBoost](https://github.com/dmlc/xgboost) - high performance gradient boosting - for Ruby
4
4
 
5
- [![Build Status](https://github.com/ruby-ml/xgboost-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ruby-ml/xgboost-ruby/actions)
5
+ [![Build Status](https://github.com/ankane/xgboost-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/xgboost-ruby/actions)
6
6
 
7
7
  ## Installation
8
8
 
@@ -173,21 +173,21 @@ Thanks to the [xgboost](https://github.com/PairOnAir/xgboost-ruby) gem for showi
173
173
 
174
174
  ## History
175
175
 
176
- View the [changelog](https://github.com/ruby-ml/xgboost-ruby/blob/master/CHANGELOG.md)
176
+ View the [changelog](https://github.com/ankane/xgboost-ruby/blob/master/CHANGELOG.md)
177
177
 
178
178
  ## Contributing
179
179
 
180
180
  Everyone is encouraged to help improve this project. Here are a few ways you can help:
181
181
 
182
- - [Report bugs](https://github.com/ruby-ml/xgboost-ruby/issues)
183
- - Fix bugs and [submit pull requests](https://github.com/ruby-ml/xgboost-ruby/pulls)
182
+ - [Report bugs](https://github.com/ankane/xgboost-ruby/issues)
183
+ - Fix bugs and [submit pull requests](https://github.com/ankane/xgboost-ruby/pulls)
184
184
  - Write, clarify, or fix documentation
185
185
  - Suggest or add new features
186
186
 
187
187
  To get started with development:
188
188
 
189
189
  ```sh
190
- git clone https://github.com/ruby-ml/xgboost-ruby.git
190
+ git clone https://github.com/ankane/xgboost-ruby.git
191
191
  cd xgboost-ruby
192
192
  bundle install
193
193
  bundle exec rake vendor:all
@@ -1,6 +1,6 @@
1
1
  module XGBoost
2
2
  class Ranker < Model
3
- def initialize(n_estimators: 100, objective: "rank:pairwise", importance_type: "gain", **options)
3
+ def initialize(objective: "rank:ndcg", **options)
4
4
  super
5
5
  end
6
6
 
@@ -1,3 +1,3 @@
1
1
  module XGBoost
2
- VERSION = "0.7.3"
2
+ VERSION = "0.8.0"
3
3
  end
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xgb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.3
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-25 00:00:00.000000000 Z
11
+ date: 2023-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -69,7 +69,7 @@ files:
69
69
  - vendor/x86_64-linux/LICENSE-rabit.txt
70
70
  - vendor/x86_64-linux/LICENSE-xgboost.txt
71
71
  - vendor/x86_64-linux/libxgboost.so
72
- homepage: https://github.com/ruby-ml/xgboost-ruby
72
+ homepage: https://github.com/ankane/xgboost-ruby
73
73
  licenses:
74
74
  - Apache-2.0
75
75
  metadata: {}
@@ -81,7 +81,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="
83
83
  - !ruby/object:Gem::Version
84
- version: '2.7'
84
+ version: '3'
85
85
  required_rubygems_version: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="