Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ankane/eps
Machine learning for Ruby
https://github.com/ankane/eps
automl machine-learning rubyml
Last synced: 13 days ago
JSON representation
Machine learning for Ruby
- Host: GitHub
- URL: https://github.com/ankane/eps
- Owner: ankane
- License: mit
- Created: 2018-07-03T19:53:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T04:36:52.000Z (4 months ago)
- Last Synced: 2024-10-04T09:58:15.128Z (about 1 month ago)
- Topics: automl, machine-learning, rubyml
- Language: Ruby
- Homepage:
- Size: 874 KB
- Stars: 652
- Watchers: 18
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Eps
Machine learning for Ruby
- Build predictive models quickly and easily
- Serve models built in Ruby, Python, R, and moreCheck out [this post](https://ankane.org/rails-meet-data-science) for more info on machine learning with Rails
[![Build Status](https://github.com/ankane/eps/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/eps/actions)
## Installation
Add this line to your application’s Gemfile:
```ruby
gem "eps"
```On Mac, also install OpenMP:
```sh
brew install libomp
```## Getting Started
Create a model
```ruby
data = [
{bedrooms: 1, bathrooms: 1, price: 100000},
{bedrooms: 2, bathrooms: 1, price: 125000},
{bedrooms: 2, bathrooms: 2, price: 135000},
{bedrooms: 3, bathrooms: 2, price: 162000}
]
model = Eps::Model.new(data, target: :price)
puts model.summary
```Make a prediction
```ruby
model.predict(bedrooms: 2, bathrooms: 1)
```Store the model
```ruby
File.write("model.pmml", model.to_pmml)
```Load the model
```ruby
pmml = File.read("model.pmml")
model = Eps::Model.load_pmml(pmml)
```A few notes:
- The target can be numeric (regression) or categorical (classification)
- Pass an array of hashes to `predict` to make multiple predictions at once
- Models are stored in [PMML](https://en.wikipedia.org/wiki/Predictive_Model_Markup_Language), a standard for model storage## Building Models
### Goal
Often, the goal of building a model is to make good predictions on future data. To help achieve this, Eps splits the data into training and validation sets if you have 30+ data points. It uses the training set to build the model and the validation set to evaluate the performance.
If your data has a time associated with it, it’s highly recommended to use that field for the split.
```ruby
Eps::Model.new(data, target: :price, split: :listed_at)
```Otherwise, the split is random. There are a number of [other options](#validation-options) as well.
Performance is reported in the summary.
- For regression, it reports validation RMSE (root mean squared error) - lower is better
- For classification, it reports validation accuracy - higher is betterTypically, the best way to improve performance is feature engineering.
### Feature Engineering
Features are extremely important for model performance. Features can be:
1. numeric
2. categorical
3. text#### Numeric
For numeric features, use any numeric type.
```ruby
{bedrooms: 4, bathrooms: 2.5}
```#### Categorical
For categorical features, use strings or booleans.
```ruby
{state: "CA", basement: true}
```Convert any ids to strings so they’re treated as categorical features.
```ruby
{city_id: city_id.to_s}
```For dates, create features like day of week and month.
```ruby
{weekday: sold_on.strftime("%a"), month: sold_on.strftime("%b")}
```For times, create features like day of week and hour of day.
```ruby
{weekday: listed_at.strftime("%a"), hour: listed_at.hour.to_s}
```#### Text
For text features, use strings with multiple words.
```ruby
{description: "a beautiful house on top of a hill"}
```This creates features based on [word count](https://en.wikipedia.org/wiki/Bag-of-words_model).
You can specify text features explicitly with:
```ruby
Eps::Model.new(data, target: :price, text_features: [:description])
```You can set advanced options with:
```ruby
text_features: {
description: {
min_occurences: 5, # min times a word must appear to be included in the model
max_features: 1000, # max number of words to include in the model
min_length: 1, # min length of words to be included
case_sensitive: true, # how to treat words with different case
tokenizer: /\s+/, # how to tokenize the text, defaults to whitespace
stop_words: ["and", "the"] # words to exclude from the model
}
}
```## Full Example
We recommend putting all the model code in a single file. This makes it easy to rebuild the model as needed.
In Rails, we recommend creating a `app/ml_models` directory. Be sure to restart Spring after creating the directory so files are autoloaded.
```sh
bin/spring stop
```Here’s what a complete model in `app/ml_models/price_model.rb` may look like:
```ruby
class PriceModel < Eps::Base
def build
houses = House.all# train
data = houses.map { |v| features(v) }
model = Eps::Model.new(data, target: :price, split: :listed_at)
puts model.summary# save to file
File.write(model_file, model.to_pmml)# ensure reloads from file
@model = nil
enddef predict(house)
model.predict(features(house))
endprivate
def features(house)
{
bedrooms: house.bedrooms,
city_id: house.city_id.to_s,
month: house.listed_at.strftime("%b"),
listed_at: house.listed_at,
price: house.price
}
enddef model
@model ||= Eps::Model.load_pmml(File.read(model_file))
enddef model_file
File.join(__dir__, "price_model.pmml")
end
end
```Build the model with:
```ruby
PriceModel.build
```This saves the model to `price_model.pmml`. Check this into source control or use a tool like [Trove](https://github.com/ankane/trove) to store it.
Predict with:
```ruby
PriceModel.predict(house)
```## Monitoring
We recommend monitoring how well your models perform over time. To do this, save your predictions to the database. Then, compare them with:
```ruby
actual = houses.map(&:price)
predicted = houses.map(&:predicted_price)
Eps.metrics(actual, predicted)
```For RMSE and MAE, alert if they rise above a certain threshold. For ME, alert if it moves too far away from 0. For accuracy, alert if it drops below a certain threshold.
## Other Languages
Eps makes it easy to serve models from other languages. You can build models in Python, R, and others and serve them in Ruby without having to worry about how to deploy or run another language.
Eps can serve LightGBM, linear regression, and naive Bayes models. Check out [ONNX Runtime](https://github.com/ankane/onnxruntime) and [Scoruby](https://github.com/asafschers/scoruby) to serve other models.
### Python
To create a model in Python, install the [sklearn2pmml](https://github.com/jpmml/sklearn2pmml) package
```sh
pip install sklearn2pmml
```And check out the examples:
- [LightGBM Regression](test/support/python/lightgbm_regression.py)
- [LightGBM Classification](test/support/python/lightgbm_classification.py)
- [Linear Regression](test/support/python/linear_regression.py)
- [Naive Bayes](test/support/python/naive_bayes.py)### R
To create a model in R, install the [pmml](https://cran.r-project.org/package=pmml) package
```r
install.packages("pmml")
```And check out the examples:
- [Linear Regression](test/support/r/linear_regression.R)
- [Naive Bayes](test/support/r/naive_bayes.R)### Verifying
It’s important for features to be implemented consistently when serving models created in other languages. We highly recommend verifying this programmatically. Create a CSV file with ids and predictions from the original model.
house_id | prediction
--- | ---
1 | 145000
2 | 123000
3 | 250000Once the model is implemented in Ruby, confirm the predictions match.
```ruby
model = Eps::Model.load_pmml("model.pmml")# preload houses to prevent n+1
houses = House.all.index_by(&:id)CSV.foreach("predictions.csv", headers: true, converters: :numeric) do |row|
house = houses[row["house_id"]]
expected = row["prediction"]actual = model.predict(bedrooms: house.bedrooms, bathrooms: house.bathrooms)
success = actual.is_a?(String) ? actual == expected : (actual - expected).abs < 0.001
raise "Bad prediction for house #{house.id} (exp: #{expected}, act: #{actual})" unless successputc "✓"
end
```## Data
A number of data formats are supported. You can pass the target variable separately.
```ruby
x = [{x: 1}, {x: 2}, {x: 3}]
y = [1, 2, 3]
Eps::Model.new(x, y)
```Data can be an array of arrays
```ruby
x = [[1, 2], [2, 0], [3, 1]]
y = [1, 2, 3]
Eps::Model.new(x, y)
```Or Numo arrays
```ruby
x = Numo::NArray.cast([[1, 2], [2, 0], [3, 1]])
y = Numo::NArray.cast([1, 2, 3])
Eps::Model.new(x, y)
```Or a Rover data frame
```ruby
df = Rover.read_csv("houses.csv")
Eps::Model.new(df, target: "price")
```Or a Daru data frame
```ruby
df = Daru::DataFrame.from_csv("houses.csv")
Eps::Model.new(df, target: "price")
```When reading CSV files directly, be sure to convert numeric fields. The `table` method does this automatically.
```ruby
CSV.table("data.csv").map { |row| row.to_h }
```## Algorithms
Pass an algorithm with:
```ruby
Eps::Model.new(data, algorithm: :linear_regression)
```Eps supports:
- LightGBM (default)
- Linear Regression
- Naive Bayes### LightGBM
Pass the learning rate with:
```ruby
Eps::Model.new(data, learning_rate: 0.01)
```### Linear Regression
By default, an intercept is included. Disable this with:
```ruby
Eps::Model.new(data, intercept: false)
```To speed up training on large datasets with linear regression, [install GSL](https://github.com/ankane/gslr#gsl-installation). With Homebrew, you can use:
```sh
brew install gsl
```Then, add this line to your application’s Gemfile:
```ruby
gem "gslr", group: :development
```It only needs to be available in environments used to build the model.
## Probability
To get the probability of each category for predictions with classification, use:
```ruby
model.predict_probability(data)
```Naive Bayes is known to produce poor probability estimates, so stick with LightGBM if you need this.
## Validation Options
Pass your own validation set with:
```ruby
Eps::Model.new(data, validation_set: validation_set)
```Split on a specific value
```ruby
Eps::Model.new(data, split: {column: :listed_at, value: Date.parse("2019-01-01")})
```Specify the validation set size (the default is `0.25`, which is 25%)
```ruby
Eps::Model.new(data, split: {validation_size: 0.2})
```Disable the validation set completely with:
```ruby
Eps::Model.new(data, split: false)
```## Database Storage
The database is another place you can store models. It’s good if you retrain models automatically.
> We recommend adding monitoring and guardrails as well if you retrain automatically
Create an Active Record model to store the predictive model.
```sh
rails generate model Model key:string:uniq data:text
```Store the model with:
```ruby
store = Model.where(key: "price").first_or_initialize
store.update(data: model.to_pmml)
```Load the model with:
```ruby
data = Model.find_by!(key: "price").data
model = Eps::Model.load_pmml(data)
```## Jupyter & IRuby
You can use [IRuby](https://github.com/SciRuby/iruby) to run Eps in [Jupyter](https://jupyter.org/) notebooks. Here’s how to get [IRuby working with Rails](https://ankane.org/jupyter-rails).
## Weights
Specify a weight for each data point
```ruby
Eps::Model.new(data, weight: :weight)
```You can also pass an array
```ruby
Eps::Model.new(data, weight: [1, 2, 3])
```Weights are supported for metrics as well
```ruby
Eps.metrics(actual, predicted, weight: weight)
```Reweighing is one method to [mitigate bias](http://aif360.mybluemix.net/) in training data
## History
View the [changelog](https://github.com/ankane/eps/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/eps/issues)
- Fix bugs and [submit pull requests](https://github.com/ankane/eps/pulls)
- Write, clarify, or fix documentation
- Suggest or add new featuresTo get started with development:
```sh
git clone https://github.com/ankane/eps.git
cd eps
bundle install
bundle exec rake test
```