Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-24359

SPIP: ML Pipelines in R

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 3.1.0
    • None
    • SparkR

    Description

      Background and motivation

      SparkR supports calling MLlib functionality with an R-friendly API. Since Spark 1.5 the (new) SparkML API which is based on pipelines and parameters has matured significantly. It allows users build and maintain complicated machine learning pipelines. A lot of this functionality is difficult to expose using the simple formula-based API in SparkR.

      We propose a new R package, SparkML, to be distributed along with SparkR as part of Apache Spark. This new package will be built on top of SparkR’s APIs to expose SparkML’s pipeline APIs and functionality.

      Why not SparkR?

      SparkR package contains ~300 functions. Many of these shadow functions in base and other popular CRAN packages. We think adding more functions to SparkR will degrade usability and make maintenance harder.

      Why not sparklyr?

      sparklyr is an R package developed by RStudio Inc. to expose Spark API to R users. sparklyr includes MLlib API wrappers, but to the best of our knowledge they are not comprehensive. Also we propose a code-gen approach for this package to minimize work needed to expose future MLlib API, but sparklyr’s API is manually written.

      Target Personas

      • Existing SparkR users who need more flexible SparkML API
      • R users (data scientists, statisticians) who wish to build Spark ML pipelines in R

      Goals

      • R users can install SparkML from CRAN
      • R users will be able to import SparkML independent from SparkR
      • After setting up a Spark session R users can
        • create a pipeline by chaining individual components and specifying their parameters
        • tune a pipeline in parallel, taking advantage of Spark
        • inspect a pipeline’s parameters and evaluation metrics
        • repeatedly apply a pipeline
      • MLlib contributors can easily add R wrappers for new MLlib Estimators and Transformers

      Non-Goals

      • Adding new algorithms to SparkML R package which do not exist in Scala
      • Parallelizing existing CRAN packages
      • Changing existing SparkR ML wrapping API

      Proposed API Changes

      Design goals

      When encountering trade-offs in API, we will chose based on the following list of priorities. The API choice that addresses a higher priority goal will be chosen.

      1. Comprehensive coverage of MLlib API: Design choices that make R coverage of future ML algorithms difficult will be ruled out.
      • Semantic clarity: We attempt to minimize confusion with other packages. Between consciousness and clarity, we will choose clarity.
      • Maintainability and testability: API choices that require manual maintenance or make testing difficult should be avoided.
      • Interoperability with rest of Spark components: We will keep the R API as thin as possible and keep all functionality implementation in JVM/Scala.
      • Being natural to R users: Ultimate users of this package are R users and they should find it easy and natural to use.

      The API will follow familiar R function syntax, where the object is passed as the first argument of the method:  do_something(obj, arg1, arg2). All functions are snake_case (e.g., spark_logistic_regression() and set_max_iter()). If a constructor gets arguments, they will be named arguments. For example:

      > lr <- set_reg_param(set_max_iter(spark.logistic.regression()), 10), 0.1)

      When calls need to be chained, like above example, syntax can nicely translate to a natural pipeline style with help from very popular[ magrittr package|https://cran.r-project.org/web/packages/magrittr/index.html]. For example:

      > logistic_regression() %>% set_max_iter(10) %>% set_reg_param(0.01) -> lr

      Namespace

      All new API will be under a new CRAN package, named SparkML. The package should be usable without needing SparkR in the namespace. The package will introduce a number of S4 classes that inherit from four basic classes. Here we will list the basic types with a few examples. An object of any child class can be instantiated with a function call that starts with spark_.

      Pipeline & PipelineStage

      A pipeline object contains one or more stages.  

      > pipeline <- spark_pipeline() %>% set_stages(stage1, stage2, stage3)

      Where stage1, stage2, etc are S4 objects of a PipelineStage and pipeline is an object of type Pipeline.

      Transformers

      A Transformer is an algorithm that can transform one SparkDataFrame into another SparkDataFrame.

      Example API:

      > tokenizer <- spark_tokenizer() %>%
      
                  set_input_col(“text”) %>%
      
                  set_output_col(“words”)
      
      > tokenized.df <- tokenizer %>% transform(df) 

      Estimators

      An Estimator is an algorithm which can be fit on a SparkDataFrame to produce a Transformer. E.g., a learning algorithm is an Estimator which trains on a DataFrame and produces a model.

      Example API:

      lr <- spark_logistic_regression() %>%
      
                  set_max_iter(10) %>%
      
                  set_reg_param(0.001)

      Evaluators

      An evaluator computes metrics from predictions (model outputs) and returns a scalar metric.

      Example API:

      lr.eval <- spark_regression_evaluator()

      Miscellaneous Classes

      MLlib pipelines have a variety of miscellaneous classes that serve as helpers and utilities. For example an object of ParamGridBuilder is used to build a grid search pipeline. Another example is ClusteringSummary.

      Example API:

      > grid <- param_grid_builder() %>%
      
                  add_grid(reg_param(lr), c(0.1, 0.01)) %>%
      
                  add_grid(fit_intercept(lr), c(TRUE, FALSE)) %>%
      
                  add_grid(elastic_net_param(lr), c(0.0, 0.5, 1.0))
      
       > model <- train_validation_split() %>%
      
                  set_estimator(lr) %>%
      
                  set_evaluator(spark_regression_evaluator()) %>%
      
                  set_estimator_param_maps(grid) %>%
      
                  set_train_ratio(0.8) %>%
      
                  set_parallelism(2) %>%
      
                  fit()

      Pipeline Persistence

      SparkML package will fix a longstanding issue with SparkR model persistence SPARK-15572. SparkML will directly wrap MLlib pipeline persistence API. 

      API example:

      > model <- pipeline %>% fit(training)
      
      > model %>% spark_write_pipeline(overwrite = TRUE, path = “...”)

      Design Sketch

      We propose using code generation from Scala to produce comprehensive API wrappers in R. For more details please see the attached design document.

      Attachments

        1. SparkML_ ML Pipelines in R.pdf
          173 kB
          Hossein Falaki
        2. SparkML_ ML Pipelines in R-v2.pdf
          175 kB
          Hossein Falaki
        3. SparkML_ ML Pipelines in R-v3.pdf
          176 kB
          Hossein Falaki

        Issue Links

          Activity

            People

              Unassigned Unassigned
              falaki Hossein Falaki
              Xiangrui Meng Xiangrui Meng
              Votes:
              0 Vote for this issue
              Watchers:
              12 Start watching this issue

              Dates

                Created:
                Updated: