GSoC 2017 Project: Operator Based Machine Learning Pipeline Construction

What is CPO?

“Composable Preprocessing Operators” are an extension for the mlr (“Machine Learning in R”) project which represent preprocessing operations (e.g. imputation or PCA) in the form of R objects. These CPO objects can be composed to form more complex operations, they can be applied to data sets, and they can be attached to mlr Learner objects to generate complex machine learning pipelines that perform both preprocessing and model fitting.

Short Overview

CPOs are created by calling a constructor.

> cpoScale()
scale(center = TRUE, scale = TRUE)

The created objects have Hyperparameters that can be manipulated using getHyperPars, setHyperPars etc, just like in mlr.

> getHyperPars(cpoScale())
$scale.center
[1] TRUE

$scale.scale
[1] TRUE

> setHyperPars(cpoScale(), scale.center = FALSE)
scale(center = FALSE, scale = TRUE)

The %>>%-operator can be used to create complex pipelines.

This operator can also be used to apply an operation to a data set:

Or to attach an operation to an MLR Learner, which extends the Learner’s hyperparameters by the CPO’s hyperparameters:

Get a list of all CPOs by calling listCPO().

Installation

Install mlrCPO from CRAN, or use the more recent GitHub version:

devtools::install_github("mlr-org/mlrCPO")

Documentation

To effectively use mlrCPO, you should first familiarize yourself a little with mlr. There is an extensive tutorial online; for more resources on mlr, see the overview on mlr’s GitHub page.

To get familiar with mlrCPO, it is recommended that you read the vignettes. For each vignette, there is also a compact version that has all the R output removed.

  1. First Steps: Introduction and short overview (compact version).
  2. mlrCPO Core: Description of general tools for CPO handling (compact version).
  3. Builtin CPOs: Listing and description of all builtin CPOs (compact version).
  4. Custom CPOs: How to create your own CPOs. (compact version).
  5. CPO Internals: A small intro guide for developers into the code base. See the info directory for pdf / html versions.

For more documentation of individual mlrCPO functions, use R’s built-in help() functionality.

Project Status

The foundation of mlrCPO is built and is reasonably stable, only small improvements and stability fixes are expected here. There are still many concrete implementations of preprocessing operators to be written.

Contributing

Bugs, Questions, Feedback

mlrCPO is a free and open source software project that encourages participation and feedback. If you have any issues, questions, suggestions or feedback, please do not hesitate to open an “issue” about it on the GitHub page!

In case of problems / bugs, it is often helpful if you provide a “minimum working example” that showcases the behaviour (but don’t worry about this if the bug is obvious).

Please understand that the resources of the project are limited: response may sometimes be delayed by a few days, and some suggestions may not not make it to become features for a while.

Contributing Code, Pull Requests

Pull Requests that fix small issues are very welcome, especially if they contain tests that check for the given issue. For larger contributions, or Pull Requests that add features, please note:

  1. Adding new CPOs is always welcome. Please have a look at a few examples in the current codebase (the PCA CPO and the corresponding tests file are good for this, and show that adding a CPO does not require a lot of code) to familiarise yourself with the conventions. A CPO that comes with documentation, in particular also documenting the CPOTrained state, and with tests, is most likely to get merged quickly.

  2. Adding or changing features of the backend, or changing the functioning of the backend, is a more complicated story. If a Pull Request is incongruent with the “vision” behind mlrCPO, or if it appears to put a large burden on the mlrCPO developers in the long term relative to the problems it solves, it may have a slim chance of getting merged. Therefore, if you plan to make a contribution changing CPO core behaviour, it is best if you first open an “issue” about it for discussion.

When creating Pull Requests, please follow the Style Guide. Adherence to this is checked by the CI system (Travis). On Linux (and possibly Mac) you can check this locally on your computer using the quicklint tool in the tools directory. This is recommended to avoid frustrating failed builds caused by style violations.

Before merging a Pull Request, it is possible that an mlrCPO developer makes further changes to it, e.g. to harmonise it with conventions, or to incorporate other ideas.

When you make a Pull Request, it is assumed that you permit us (and are able to permit us) to incorporate the given code into the mlrCPO codebase as given, or with modifications, and distribute the result under the BSD 2-Clause License.

Similar Projects

There are other projects that provide functionality similar to mlrCPO for other machine learning frameworks. The caret project provides some preprocessing functionality, though not as flexible as mlrCPO. dplyr has similar syntax and some overlapping functionality, but is focused ultimately more on (manual) data manipulation instead of (machine learning pipeline integrated) preprocessing. Much more close to mlrCPO’s functionality is the Recipes package. scikit learn also has preprocessing functionality built in.

License

The BSD 2-Clause License