README.md in lightgbm-0.2.6 vs README.md in lightgbm-0.2.7
- old
+ new
@@ -1,17 +1,17 @@
# LightGBM Ruby
[LightGBM](https://github.com/microsoft/LightGBM) - high performance gradient boosting - for Ruby
-[![Build Status](https://github.com/ankane/lightgbm-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/lightgbm-ruby/actions)
+[![Build Status](https://github.com/ruby-ml/lightgbm-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ruby-ml/lightgbm-ruby/actions)
## Installation
Add this line to your application’s Gemfile:
```ruby
-gem 'lightgbm'
+gem "lightgbm"
```
On Mac, also install OpenMP:
```sh
@@ -152,11 +152,11 @@
- [Parameters](https://lightgbm.readthedocs.io/en/latest/Parameters.html)
- [Parameter Tuning](https://lightgbm.readthedocs.io/en/latest/Parameters-Tuning.html)
## Related Projects
-- [XGBoost](https://github.com/ankane/xgboost) - XGBoost for Ruby
+- [XGBoost](https://github.com/ruby-ml/xgboost-ruby) - XGBoost for Ruby
- [Eps](https://github.com/ankane/eps) - Machine learning for Ruby
## Credits
This library follows the [Python API](https://lightgbm.readthedocs.io/en/latest/Python-API.html). A few differences are:
@@ -167,24 +167,24 @@
Thanks to the [xgboost](https://github.com/PairOnAir/xgboost-ruby) gem for showing how to use FFI.
## History
-View the [changelog](https://github.com/ankane/lightgbm-ruby/blob/master/CHANGELOG.md)
+View the [changelog](https://github.com/ruby-ml/lightgbm-ruby/blob/master/CHANGELOG.md)
## Contributing
Everyone is encouraged to help improve this project. Here are a few ways you can help:
-- [Report bugs](https://github.com/ankane/lightgbm-ruby/issues)
-- Fix bugs and [submit pull requests](https://github.com/ankane/lightgbm-ruby/pulls)
+- [Report bugs](https://github.com/ruby-ml/lightgbm-ruby/issues)
+- Fix bugs and [submit pull requests](https://github.com/ruby-ml/lightgbm-ruby/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features
To get started with development:
```sh
-git clone https://github.com/ankane/lightgbm-ruby.git
+git clone https://github.com/ruby-ml/lightgbm-ruby.git
cd lightgbm-ruby
bundle install
bundle exec rake vendor:all
bundle exec rake test
```