lightgbm 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +7 -7
- data/lib/lightgbm/version.rb +1 -1
- data/vendor/lib_lightgbm.arm64.dylib +0 -0
- data/vendor/lib_lightgbm.dll +0 -0
- data/vendor/lib_lightgbm.dylib +0 -0
- data/vendor/lib_lightgbm.so +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 328c6527e9dc0b8188e46cb52f23047c4ee75a4791b65f828ee3273d7a26f552
|
4
|
+
data.tar.gz: 9949ad7bd10d28ec6916cf641b2563bb9de45c2bb25aca40e9db8ce7465e95bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12a3a1a9a8216b73c12dc7c35d4352520957682aa2dd0b2fe1884d79257014017ed5c007f0e5f3706bb6b105e19edf47ecba0f2a8165534c5a3b55128a6bfdf3
|
7
|
+
data.tar.gz: ee908d0f11277553cef46c06677b5982e1fb206546f278202830a2b59ea501ae5945d1c9eed51bab02972f3c030b64ed2bae14fcc40e59b642a19677a52bc6d5
|
data/CHANGELOG.md
CHANGED
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
|
data/lib/lightgbm/version.rb
CHANGED
Binary file
|
data/vendor/lib_lightgbm.dll
CHANGED
Binary file
|
data/vendor/lib_lightgbm.dylib
CHANGED
Binary file
|
data/vendor/lib_lightgbm.so
CHANGED
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.
|
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-
|
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.
|
70
|
+
rubygems_version: 3.2.22
|
71
71
|
signing_key:
|
72
72
|
specification_version: 4
|
73
73
|
summary: High performance gradient boosting for Ruby
|