Skip to content

Commit

Permalink
Merge pull request #47 from JuliaAI/46-cant-create-experiment-with-v051
Browse files Browse the repository at this point in the history
Change `MLFlow` instances URI to use trailing `/api`
  • Loading branch information
pebeto authored May 27, 2024
2 parents 050fa81 + 8df2a34 commit c0d7723
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/src/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ end
p = plot()

# Create MLFlow instance
mlf = MLFlow("http://localhost:5000")
mlf = MLFlow("http://localhost:5000/api")

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

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

![](mlflowexpmetric1.png)
![](mlflowexpmetric1.png)
2 changes: 1 addition & 1 deletion examples/simple-with-mlflow.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ end
p = plot()

# Create MLFlow instance
mlf = MLFlow("http://localhost:5000")
mlf = MLFlow("http://localhost:5000/api")

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

0 comments on commit c0d7723

Please sign in to comment.