⚠️There's a newer version (0.18.0) of this package. Take me there.

mlr3

A clean, object-oriented rewrite of mlr.

Installation

remotes::install_github("mlr-org/mlr3")

Why a rewrite?

mlr was first released to CRAN in 2013. Its core design and architecture date back even further. The addition of many features has led to a feature creep which makes mlr hard to maintain and hard to extend. We also think that while mlr was nicely extensible in some parts (learners, measures, etc.), other parts were less easy to extend from the outside. Also, many helpful R libraries did not exist at the time mlr was created, and their inclusion would result in non-trivial API changes.

Design principles

  • Only the basic building blocks for machine learning are implemented in this package.

  • Focus on computation here. No visualization or other stuff. That can go in extra packages.

  • Overcome the limitations of R's S3 classes with the help of R6.

  • Embrace R6, clean OO-design, object state-changes and reference semantics. This might be less "traditional R", but seems to fit mlr nicely.

  • Embrace data.table for fast and convenient data frame computations.

  • Combine data.table and R6, for this we will make heavy use of list columns in data.tables.

  • Be light on dependencies. mlr3 requires the following packages:

    • backports: Ensures backward compatibility with older R releases. Developed by members of the mlr team. No recursive dependencies.
    • checkmate: Fast argument checks. Developed by members of the mlr team. No extra recursive dependencies.
    • mlr3misc Miscellaneous functions used in multiple mlr3 extension packages. Developed by the mlr team. No extra recursive dependencies.
    • paradox: Descriptions for parameters and parameter sets. Developed by the mlr team. No extra recursive dependencies.
    • R6: Reference class objects. No recursive dependencies.
    • data.table: Extension of R's data.frame. No recursive dependencies.
    • digest: Hash digests. No recursive dependencies.
    • lgr: Logging facility. No extra recursive dependencies.
    • Metrics: Package which implements performance measures. No recursive dependencies.
    • mlbench: A collection of machine learning data sets. No dependencies.
  • Additional functionality that comes with extra dependencies:

Resources

Copy Link

Version

Down Chevron

Install

install.packages('mlr3')

Monthly Downloads

8,227

Version

0.1.0-9000

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

January 1st, 1970

Functions in mlr3 (0.1.0-9000)