Uses of Class
org.mlflow.tracking.ActiveRun
-
Packages that use ActiveRun Package Description org.mlflow.tracking MLflow Tracking provides a Java CRUD interface to MLflow Experiments and Runs -- to create and log to MLflow runs, use theMlflowContext
interface. -
-
Uses of ActiveRun in org.mlflow.tracking
Methods in org.mlflow.tracking that return ActiveRun Modifier and Type Method Description ActiveRun
MlflowContext. startRun()
Starts a MLflow run without a name.ActiveRun
MlflowContext. startRun(java.lang.String runName)
Starts a MLflow run.ActiveRun
MlflowContext. startRun(java.lang.String runName, java.lang.String parentRunId)
LikeMlflowContext.startRun(String)
but sets themlflow.parentRunId
tag in order to create nested runs.Method parameters in org.mlflow.tracking with type arguments of type ActiveRun Modifier and Type Method Description void
MlflowContext. withActiveRun(java.lang.String runName, java.util.function.Consumer<ActiveRun> activeRunFunction)
LikeMlflowContext.withActiveRun(Consumer)
with an explicity run name.void
MlflowContext. withActiveRun(java.util.function.Consumer<ActiveRun> activeRunFunction)
LikeMlflowContext.startRun(String)
but will terminate the run after the activeRunFunction is executed.
-