Load a fitted MLlib model from the input path. — read.ml (original) (raw)

read.ml.Rd

Load a fitted MLlib model from the input path.

Usage

read.ml(path)

Arguments

path

path of the model to read.

Value

A fitted MLlib model.

Note

read.ml since 2.0.0

See also

write.ml

Examples

if (FALSE) { # \dontrun{
path <- "path/to/model"
model <- read.ml(path)
} # }