xgb 0.11.0 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5fd1670cc6fc20a352e85facd9abb1923195c14022e7f909fc588217e758973
4
- data.tar.gz: 9bfe06f330635d6f4f5bbf71223be5a7d2f4891e394c12f697a10a18215bf694
3
+ metadata.gz: a7428aac799cd2099ef2bc224c29436b63193b7e419950660f8f6580bd232805
4
+ data.tar.gz: f266b4e62bafccc3f9079a946defee85d775acc16f2b242b8402c9facc29a5ed
5
5
  SHA512:
6
- metadata.gz: 90fe5e7cc050bf8d8a2079974501cb50ac886bcb1482160afca50c1cf598d836b59c324630cf00236ac8e089fe57fb618335dde4c9a22dd3d4a5bc7fd031f41c
7
- data.tar.gz: 4d87ee477501874f53633c286bec193da8f731f7e14f3f9008ed2da68fd7e3f3f594c25bc47d8f940813546208ff50981731ab67204d140c0a9cdebba6727565
6
+ metadata.gz: 57da6c5369b485d77c30651b5b33e241b5bc7d7fefb4a4271d5a819ced99e0cf9d3c7a10a0905da8fb18e317fb5021d12a6bb60af954562a22336d008ac78cf7
7
+ data.tar.gz: c4b17d123505772002444cd12372b2cae5e1205a8c24a2b08fdb815bd60733d3bce57af9592c636369ac7bb10a2fece82f58a070b9a6950447843f5322cae327
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.11.1 (2026-02-14)
2
+
3
+ - Updated XGBoost to 3.2.0
4
+
1
5
  ## 0.11.0 (2025-10-18)
2
6
 
3
7
  - Updated XGBoost to 3.1.0
data/README.md CHANGED
@@ -45,13 +45,13 @@ booster.predict(dtest)
45
45
  Save the model to a file
46
46
 
47
47
  ```ruby
48
- booster.save_model("my.model")
48
+ booster.save_model("model.json")
49
49
  ```
50
50
 
51
51
  Load the model from a file
52
52
 
53
53
  ```ruby
54
- booster = XGBoost::Booster.new(model_file: "my.model")
54
+ booster = XGBoost::Booster.new(model_file: "model.json")
55
55
  ```
56
56
 
57
57
  Get the importance of features
@@ -108,13 +108,13 @@ model.predict(x)
108
108
  Save the model to a file
109
109
 
110
110
  ```ruby
111
- model.save_model("my.model")
111
+ model.save_model("model.json")
112
112
  ```
113
113
 
114
114
  Load the model from a file
115
115
 
116
116
  ```ruby
117
- model.load_model("my.model")
117
+ model.load_model("model.json")
118
118
  ```
119
119
 
120
120
  Get the importance of features
@@ -1,3 +1,3 @@
1
1
  module XGBoost
2
- VERSION = "0.11.0"
2
+ VERSION = "0.11.1"
3
3
  end
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xgb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  - !ruby/object:Gem::Version
86
86
  version: '0'
87
87
  requirements: []
88
- rubygems_version: 3.6.9
88
+ rubygems_version: 4.0.3
89
89
  specification_version: 4
90
90
  summary: High performance gradient boosting for Ruby
91
91
  test_files: []