library(mleap)
library(sparklyr)
<- spark_connect(master = "local")
sc
<- sdf_copy_to(sc, mtcars, overwrite = TRUE)
mtcars_tbl
<- ml_pipeline(sc) %>%
pipeline ft_binarizer("hp", "big_hp", threshold = 100) %>%
ft_vector_assembler(c("big_hp", "wt", "qsec"), "features") %>%
ml_gbt_regressor(label_col = "mpg")
<- ml_fit(pipeline, mtcars_tbl)
pipeline_model
<- file.path(tempdir(), "mtcars_model.zip")
model_path
ml_write_bundle(pipeline_model,
mtcars_tbl,
model_path, overwrite = TRUE
)
Export a Spark pipeline for serving
R/write-bundle.R
ml_write_bundle
Description
This functions serializes a Spark pipeline model into an MLeap bundle.
Usage
ml_write_bundle(x, sample_input, path, overwrite = FALSE)
Arguments
Arguments | Description |
---|---|
x | A Spark pipeline model object. |
sample_input | A sample input Spark DataFrame with the expected schema. |
path | Where to save the bundle. |
overwrite | Whether to overwrite an existing file, defaults to FALSE . |