Learn R Programming

mlflow (version 0.7.0)

mlflow_load_model: Load MLflow Model.

Description

MLflow models can have multiple model flavors. Not all flavors / models can be loaded in R. This method will by default search for a flavor supported by R/mlflow.

Usage

mlflow_load_model(model_path, flavor = NULL, run_id = NULL)

Arguments

model_path

"Path to the MLflow model. The path is relative to the run with the given run-id or local filesystem path without run-id.

flavor

Optional flavor specification. Can be used to load a particular flavor in case there are multiple flavors available.

run_id

Optional MLflow run-id. If supplied model will be fetched from MLflow tracking server.