diff --git a/docs/src/tutorial.md b/docs/src/tutorial.md index d7565c3..9ca7c1d 100644 --- a/docs/src/tutorial.md +++ b/docs/src/tutorial.md @@ -109,7 +109,7 @@ logartifact(mlf, exprun, plotfilename) rm(plotfilename) # complete the experiment -updaterun(mlf, exprun, "FINISHED") +updaterun(mlf, exprun; status=RunStatus.FINISHED) ``` This will result in the folowing experiment created in your `MLFlow` which is running on `http://localhost/`: diff --git a/examples/simple-with-mlflow.jl b/examples/simple-with-mlflow.jl index 13990f0..1f14910 100644 --- a/examples/simple-with-mlflow.jl +++ b/examples/simple-with-mlflow.jl @@ -58,4 +58,4 @@ logartifact(mlf, exprun, plotfilename) rm(plotfilename) # complete the experiment -updaterun(mlf, exprun, "FINISHED") +updaterun(mlf, exprun; status=RunStatus.FINISHED)