README.md in lightgbm-0.1.7 vs README.md in lightgbm-0.1.8

- old
+ new

@@ -1,11 +1,9 @@ # LightGBM -[LightGBM](https://github.com/microsoft/LightGBM) - the high performance machine learning library - for Ruby +[LightGBM](https://github.com/microsoft/LightGBM) - high performance gradient boosting - for Ruby -:fire: Uses the C API for blazing performance - [![Build Status](https://travis-ci.org/ankane/lightgbm.svg?branch=master)](https://travis-ci.org/ankane/lightgbm) ## Installation Add this line to your application’s Gemfile: @@ -18,20 +16,10 @@ ```sh brew install libomp ``` -## Getting Started - -This library follows the [Python API](https://lightgbm.readthedocs.io/en/latest/Python-API.html). A few differences are: - -- The `get_` and `set_` prefixes are removed from methods -- The default verbosity is `-1` -- With the `cv` method, `stratified` is set to `false` - -Some methods and options are also missing at the moment. PRs welcome! - ## Training API Prep your data ```ruby @@ -158,17 +146,23 @@ - [Parameters](https://lightgbm.readthedocs.io/en/latest/Parameters.html) - [Parameter Tuning](https://lightgbm.readthedocs.io/en/latest/Parameters-Tuning.html) ## Related Projects -- [Xgb](https://github.com/ankane/xgb) - XGBoost for Ruby -- [Eps](https://github.com/ankane/eps) - Machine Learning for Ruby +- [XGBoost](https://github.com/ankane/xgboost) - XGBoost for Ruby +- [Eps](https://github.com/ankane/eps) - Machine learning for Ruby ## Credits -Thanks to the [xgboost](https://github.com/PairOnAir/xgboost-ruby) gem for serving as an initial reference. +This library follows the [Python API](https://lightgbm.readthedocs.io/en/latest/Python-API.html). A few differences are: +- The `get_` and `set_` prefixes are removed from methods +- The default verbosity is `-1` +- With the `cv` method, `stratified` is set to `false` + +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/blob/master/CHANGELOG.md) ## Contributing @@ -178,10 +172,10 @@ - [Report bugs](https://github.com/ankane/lightgbm/issues) - Fix bugs and [submit pull requests](https://github.com/ankane/lightgbm/pulls) - Write, clarify, or fix documentation - Suggest or add new features -To get started with development and testing: +To get started with development: ```sh git clone https://github.com/ankane/lightgbm.git cd lightgbm bundle install