Uses of Class
org.mlflow.tracking.ActiveRun
Package
Description
MLflow Tracking provides a Java CRUD interface to MLflow Experiments and Runs --
to create and log to MLflow runs, use the
MlflowContext
interface.-
Uses of ActiveRun in org.mlflow.tracking
Modifier and TypeMethodDescriptionMlflowContext.startRun()
Starts a MLflow run without a name.Starts a MLflow run.LikeMlflowContext.startRun(String)
but sets themlflow.parentRunId
tag in order to create nested runs.Modifier and TypeMethodDescriptionvoid
MlflowContext.withActiveRun
(String runName, Consumer<ActiveRun> activeRunFunction) LikeMlflowContext.withActiveRun(Consumer)
with an explicity run name.void
MlflowContext.withActiveRun
(Consumer<ActiveRun> activeRunFunction) LikeMlflowContext.startRun(String)
but will terminate the run after the activeRunFunction is executed.