Rumale v0.11.0 Release Notes

    • Introduce Parallel gem to improve execution speed for one-vs-the-rest and bagging methods.
    • ➕ Add the n_jobs parameter that specifies the number of jobs for parallel processing in some estimators belong to the Rumale::LinearModel, Rumale::PolynomialModel, and Rumale::Ensemble.
    • 👷 The n_jobs parameter is valid only when parallel gem is loaded.
    require 'rumale'
    require 'parallel'
    
    svc = Rumale::LinearModel::SVC.new(n_jobs: -1)