Skip to content

Commit 7b17100

Browse files
authored
Merge pull request #65 from RomeoV/fix-createexperiment-tutorial-syntax
Fix createexperiment API syntax in tutorial and examples
2 parents de48322 + e9af669 commit 7b17100

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/src/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ p = plot()
7272
mlf = MLFlow("http://localhost:5000/api")
7373

7474
# Initiate new experiment
75-
experiment_id = createexperiment(mlf; name="price-paths")
75+
experiment_id = createexperiment(mlf, "price-paths")
7676

7777
# Create a run in the new experiment
7878
exprun = createrun(mlf, experiment_id)

examples/simple-with-mlflow.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ p = plot()
2121
mlf = MLFlow("http://localhost:5000/api")
2222

2323
# Initiate new experiment
24-
experiment_id = createexperiment(mlf; name="price-paths")
24+
experiment_id = createexperiment(mlf, "price-paths")
2525

2626
# Create a run in the new experiment
2727
exprun = createrun(mlf, experiment_id)

0 commit comments

Comments
 (0)