diff --git a/docs/src/tutorial.md b/docs/src/tutorial.md index d7565c3..d11dad1 100644 --- a/docs/src/tutorial.md +++ b/docs/src/tutorial.md @@ -102,11 +102,12 @@ end plotfilename = "pricepaths-plot.png" png(plotfilename) -# Upload the plot as an artifact associated with the MLFlow experiment's run -logartifact(mlf, exprun, plotfilename) +# TODO: Upload the plot as an artifact when logartifact function is implemented +# See: https://github.com/JuliaAI/MLFlowClient.jl/issues/61 +# logartifact(mlf, exprun, plotfilename) -# remote temporary plot which was already uploaded in MLFlow -rm(plotfilename) +# Keep the plot file since artifact upload is not yet available +# rm(plotfilename) # complete the experiment updaterun(mlf, exprun, "FINISHED") diff --git a/examples/simple-with-mlflow.jl b/examples/simple-with-mlflow.jl index 13990f0..3c1145d 100644 --- a/examples/simple-with-mlflow.jl +++ b/examples/simple-with-mlflow.jl @@ -51,11 +51,12 @@ end plotfilename = "pricepaths-plot.png" png(plotfilename) -# Upload the plot as an artifact associated with the MLFlow experiment's run -logartifact(mlf, exprun, plotfilename) +# TODO: Upload the plot as an artifact when logartifact function is implemented +# See: https://github.com/JuliaAI/MLFlowClient.jl/issues/61 +# logartifact(mlf, exprun, plotfilename) -# remote temporary plot which was already uploaded in MLFlow -rm(plotfilename) +# Keep the plot file since artifact upload is not yet available +# rm(plotfilename) # complete the experiment updaterun(mlf, exprun, "FINISHED")