Skip to content

Commit 8df2a34

Browse files
committed
Change MLFlow instances URI to use trailing /api
1 parent 050fa81 commit 8df2a34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ end
6969
p = plot()
7070

7171
# Create MLFlow instance
72-
mlf = MLFlow("http://localhost:5000")
72+
mlf = MLFlow("http://localhost:5000/api")
7373

7474
# Initiate new experiment
7575
experiment_id = createexperiment(mlf; name="price-paths")
@@ -118,4 +118,4 @@ This will result in the folowing experiment created in your `MLFlow` which is ru
118118

119119
You can also observe series logged against individual metrics, i.e. `pricepath1` looks like this in `MLFlow`:
120120

121-
![](mlflowexpmetric1.png)
121+
![](mlflowexpmetric1.png)

examples/simple-with-mlflow.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ end
1818
p = plot()
1919

2020
# Create MLFlow instance
21-
mlf = MLFlow("http://localhost:5000")
21+
mlf = MLFlow("http://localhost:5000/api")
2222

2323
# Initiate new experiment
2424
experiment_id = createexperiment(mlf; name="price-paths")

0 commit comments

Comments
 (0)