Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 3.7 KB

README.md

File metadata and controls

54 lines (40 loc) · 3.7 KB

mllrnrs

CRAN checks Dependencies R build status R build status R build status

The mllrnrs R package ships with additional ML learners for mlexperiments.

Currently implemented learners are:

Name Based on Description / Tasks
LearnerGlmnet glmnet::glmnet General interface to glmnet (examples available for families binomial , multinomial, and regression
LearnerLightgbm lightgbm::lgb.train General interface to lightgbm (examples available for objectives binary , multiclass, and regression
LearnerRanger ranger::ranger General interface to ranger (examples available for tasks binary , multiclass, and regression
LearnerXgboost xgboost::xgb.train General interface to xgboost (examples available for objectives binary:logistic , multi:softprob, and reg:squarederror

For a short introduction on how to use the learners together with the mlexperiments R package, please visit the wiki page.

Some learner for survival tasks are implemented in the mlsurvlrnrs R package.

Installation

mllrnrs can be installed directly from CRAN:

install.packages("mllrnrs")

To install the development version, run

install.packages("remotes")
remotes::install_github("kapsner/mllrnrs")