README.md in eps-0.3.1 vs README.md in eps-0.3.2

- old
+ new

@@ -353,22 +353,26 @@ - Linear Regression - Naive Bayes ### Linear Regression +#### Performance + To speed up training on large datasets with linear regression, [install GSL](https://www.gnu.org/software/gsl/). With Homebrew, you can use: ```sh brew install gsl ``` Then, add this line to your application’s Gemfile: ```ruby -gem 'gsl', group: :development +gem 'gslr', group: :development ``` It only needs to be available in environments used to build the model. + +#### Options By default, an intercept is included. Disable this with: ```ruby Eps::Model.new(data, intercept: false)