Skip to content

Commit

Permalink
Merge pull request #13 from JuliaAI/v0.3-dev
Browse files Browse the repository at this point in the history
V0.3 dev
  • Loading branch information
deyandyankov authored Dec 12, 2021
2 parents 14b974d + cf69ecc commit a77fc28
Show file tree
Hide file tree
Showing 8 changed files with 336 additions and 174 deletions.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
name = "MLFlowClient"
uuid = "64a0f543-368b-4a9a-827a-e71edb2a0b83"
authors = ["@deyandyankov and contributors"]
version = "0.2.0"
version = "0.3.0"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
FilePathsBase = "48062228-2e41-5def-b9a4-89aafe57970f"
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
ShowCases = "605ecd9f-84a6-4c9e-81e2-4798472b76a3"
URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"

[compat]
FilePathsBase = "0.9"
HTTP = "0.9"
JSON = "0.21"
ShowCases = "0.1"
URIs = "1"
julia = "1"

Expand Down
8 changes: 3 additions & 5 deletions docs/src/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ MLFlowRunInfo
MLFlowRunData
MLFlowRunDataMetric
MLFlowRunStatus
MLFlowArtifactFileInfo
MLFlowArtifactDirInfo
```

# Experiments
Expand All @@ -36,14 +38,10 @@ getrun
updaterun
deleterun
searchruns
```

# Logging

```@docs
logparam
logmetric
logartifact
listartifacts
```

# Utilities
Expand Down
15 changes: 9 additions & 6 deletions src/MLFlowClient.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ using UUIDs
using HTTP
using URIs
using JSON
using ShowCases
using FilePathsBase: AbstractPath

include("types.jl")
Expand All @@ -31,7 +32,11 @@ export
MLFlowRunDataMetric,
MLFlowRun,
get_info,
get_data
get_data,
MLFlowArtifactFileInfo,
MLFlowArtifactDirInfo,
get_path,
get_size

include("utils.jl")
export
Expand All @@ -51,12 +56,10 @@ export
getrun,
updaterun,
deleterun,
searchruns

include("logging.jl")
export
searchruns,
logparam,
logmetric,
logartifact
logartifact,
listartifacts

end
136 changes: 0 additions & 136 deletions src/logging.jl

This file was deleted.

Loading

0 comments on commit a77fc28

Please sign in to comment.