File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -105,11 +105,12 @@ end
105105plotfilename = " pricepaths-plot.png"
106106png (plotfilename)
107107
108- # Upload the plot as an artifact associated with the MLFlow experiment's run
109- logartifact (mlf, exprun, plotfilename)
108+ # TODO : Upload the plot as an artifact when logartifact function is implemented
109+ # See: https://github.com/JuliaAI/MLFlowClient.jl/issues/61
110+ # logartifact(mlf, exprun, plotfilename)
110111
111- # remote temporary plot which was already uploaded in MLFlow
112- rm (plotfilename)
112+ # Keep the plot file since artifact upload is not yet available
113+ # rm(plotfilename)
113114
114115# complete the experiment
115116updaterun (mlf, exprun; status= RunStatus. FINISHED)
Original file line number Diff line number Diff line change 5454plotfilename = " pricepaths-plot.png"
5555png (plotfilename)
5656
57- # Upload the plot as an artifact associated with the MLFlow experiment's run
58- logartifact (mlf, exprun, plotfilename)
57+ # TODO : Upload the plot as an artifact when logartifact function is implemented
58+ # See: https://github.com/JuliaAI/MLFlowClient.jl/issues/61
59+ # logartifact(mlf, exprun, plotfilename)
5960
60- # remote temporary plot which was already uploaded in MLFlow
61- rm (plotfilename)
61+ # Keep the plot file since artifact upload is not yet available
62+ # rm(plotfilename)
6263
6364# complete the experiment
6465updaterun (mlf, exprun; status= RunStatus. FINISHED)
You can’t perform that action at this time.
0 commit comments