Learn R Programming

mlflow (version 0.9.0.1)

mlflow_cli: MLflow Command

Description

Runs a generic MLflow command through the command-line interface.

Usage

mlflow_cli(..., background = FALSE, echo = TRUE,
  stderr_callback = NULL, client = mlflow_client())

Arguments

...

The parameters to pass to the command line.

background

Should this command be triggered as a background task? Defaults to FALSE.

echo

Print the standard output and error to the screen? Defaults to TRUE, does not apply to background tasks.

stderr_callback

NULL, or a function to call for every chunk of the standard error.

client

Mlflow client to provide environment for the cli process.

Value

A processx task.

Examples

Run this code
# NOT RUN {
library(mlflow)
mlflow_install()

mlflow_cli("server", "--help")
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab