Learn R Programming

mlflow (version 0.9.0.1)

mlflow_load_model: Load MLflow Model

Description

Loads an MLflow model. MLflow models can have multiple model flavors. Not all flavors / models can be loaded in R. This method by default searches 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.