diff --git a/docs/src/tutorial.md b/docs/src/tutorial.md index d7565c3..a76d4c7 100644 --- a/docs/src/tutorial.md +++ b/docs/src/tutorial.md @@ -72,7 +72,7 @@ p = plot() mlf = MLFlow("http://localhost:5000/api") # Initiate new experiment -experiment_id = createexperiment(mlf; name="price-paths") +experiment_id = createexperiment(mlf, "price-paths") # Create a run in the new experiment exprun = createrun(mlf, experiment_id) diff --git a/examples/simple-with-mlflow.jl b/examples/simple-with-mlflow.jl index 13990f0..8b5b50c 100644 --- a/examples/simple-with-mlflow.jl +++ b/examples/simple-with-mlflow.jl @@ -21,7 +21,7 @@ p = plot() mlf = MLFlow("http://localhost:5000/api") # Initiate new experiment -experiment_id = createexperiment(mlf; name="price-paths") +experiment_id = createexperiment(mlf, "price-paths") # Create a run in the new experiment exprun = createrun(mlf, experiment_id)