lightgbm 0.2.5 → 0.2.6

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: ec446571f84421dcaf4d9453dce40aabdd8e76534e263b8de52566efc1d94560
4
- data.tar.gz: 4be2791d0753e1f8848581c84c80c8952aa131e3eb33435293b37beee963ae19
3
+ metadata.gz: 328c6527e9dc0b8188e46cb52f23047c4ee75a4791b65f828ee3273d7a26f552
4
+ data.tar.gz: 9949ad7bd10d28ec6916cf641b2563bb9de45c2bb25aca40e9db8ce7465e95bc
5
5
  SHA512:
6
- metadata.gz: 03317e8af302bfbe6d3cd6b5d9499696c249bcfadaa0d265ca04cbd4b0d5801a1379cefc6789b1d0ad7e4d3ef1e2f9f3728f3654195823b55821b226141e41e8
7
- data.tar.gz: b94edee304531f64a605785a707fdc4ae3b1d7879a121d98708ce5f32eef747d483f396e6a164f3fad76e0d0dcb63b46a05f68fa7fb57f3d7c6c2e1070ecabbe
6
+ metadata.gz: 12a3a1a9a8216b73c12dc7c35d4352520957682aa2dd0b2fe1884d79257014017ed5c007f0e5f3706bb6b105e19edf47ecba0f2a8165534c5a3b55128a6bfdf3
7
+ data.tar.gz: ee908d0f11277553cef46c06677b5982e1fb206546f278202830a2b59ea501ae5945d1c9eed51bab02972f3c030b64ed2bae14fcc40e59b642a19677a52bc6d5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.2.6 (2021-10-24)
2
+
3
+ - Updated LightGBM to 3.3.0
4
+
1
5
  ## 0.2.5 (2021-07-07)
2
6
 
3
7
  - Added `feature_name` method to boosters
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # LightGBM
1
+ # LightGBM Ruby
2
2
 
3
3
  [LightGBM](https://github.com/microsoft/LightGBM) - high performance gradient boosting - for Ruby
4
4
 
5
- [![Build Status](https://github.com/ankane/lightgbm/workflows/build/badge.svg?branch=master)](https://github.com/ankane/lightgbm/actions)
5
+ [![Build Status](https://github.com/ankane/lightgbm-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/lightgbm-ruby/actions)
6
6
 
7
7
  ## Installation
8
8
 
@@ -169,22 +169,22 @@ Thanks to the [xgboost](https://github.com/PairOnAir/xgboost-ruby) gem for showi
169
169
 
170
170
  ## History
171
171
 
172
- View the [changelog](https://github.com/ankane/lightgbm/blob/master/CHANGELOG.md)
172
+ View the [changelog](https://github.com/ankane/lightgbm-ruby/blob/master/CHANGELOG.md)
173
173
 
174
174
  ## Contributing
175
175
 
176
176
  Everyone is encouraged to help improve this project. Here are a few ways you can help:
177
177
 
178
- - [Report bugs](https://github.com/ankane/lightgbm/issues)
179
- - Fix bugs and [submit pull requests](https://github.com/ankane/lightgbm/pulls)
178
+ - [Report bugs](https://github.com/ankane/lightgbm-ruby/issues)
179
+ - Fix bugs and [submit pull requests](https://github.com/ankane/lightgbm-ruby/pulls)
180
180
  - Write, clarify, or fix documentation
181
181
  - Suggest or add new features
182
182
 
183
183
  To get started with development:
184
184
 
185
185
  ```sh
186
- git clone https://github.com/ankane/lightgbm.git
187
- cd lightgbm
186
+ git clone https://github.com/ankane/lightgbm-ruby.git
187
+ cd lightgbm-ruby
188
188
  bundle install
189
189
  bundle exec rake vendor:all
190
190
  bundle exec rake test
@@ -1,3 +1,3 @@
1
1
  module LightGBM
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lightgbm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-07 00:00:00.000000000 Z
11
+ date: 2021-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -48,7 +48,7 @@ files:
48
48
  - vendor/lib_lightgbm.dll
49
49
  - vendor/lib_lightgbm.dylib
50
50
  - vendor/lib_lightgbm.so
51
- homepage: https://github.com/ankane/lightgbm
51
+ homepage: https://github.com/ankane/lightgbm-ruby
52
52
  licenses:
53
53
  - MIT
54
54
  metadata: {}
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  requirements: []
70
- rubygems_version: 3.2.3
70
+ rubygems_version: 3.2.22
71
71
  signing_key:
72
72
  specification_version: 4
73
73
  summary: High performance gradient boosting for Ruby