Learn R Programming

mlflow (version 0.7.0)

mlflow_save_model: Save Model for MLflow

Description

Saves model in MLflow's format that can later be used for prediction and serving.

Usage

mlflow_save_model(x, path = "model", r_dependencies = NULL,
  conda_env = NULL)

Arguments

x

The serving function or model that will perform a prediction.

path

Destination path where this MLflow compatible model will be saved.

r_dependencies

Optional vector of paths to dependency files to include in the model, as in r-dependencies.txt or conda.yaml.

conda_env

Path to Conda dependencies file.