Skip to content

Commit a77fc28

Browse files
authored
Merge pull request #13 from JuliaAI/v0.3-dev
V0.3 dev
2 parents 14b974d + cf69ecc commit a77fc28

File tree

8 files changed

+336
-174
lines changed

8 files changed

+336
-174
lines changed

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
name = "MLFlowClient"
22
uuid = "64a0f543-368b-4a9a-827a-e71edb2a0b83"
33
authors = ["@deyandyankov and contributors"]
4-
version = "0.2.0"
4+
version = "0.3.0"
55

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

1415
[compat]
1516
FilePathsBase = "0.9"
1617
HTTP = "0.9"
1718
JSON = "0.21"
19+
ShowCases = "0.1"
1820
URIs = "1"
1921
julia = "1"
2022

docs/src/reference.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ MLFlowRunInfo
1616
MLFlowRunData
1717
MLFlowRunDataMetric
1818
MLFlowRunStatus
19+
MLFlowArtifactFileInfo
20+
MLFlowArtifactDirInfo
1921
```
2022

2123
# Experiments
@@ -36,14 +38,10 @@ getrun
3638
updaterun
3739
deleterun
3840
searchruns
39-
```
40-
41-
# Logging
42-
43-
```@docs
4441
logparam
4542
logmetric
4643
logartifact
44+
listartifacts
4745
```
4846

4947
# Utilities

src/MLFlowClient.jl

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ using UUIDs
1717
using HTTP
1818
using URIs
1919
using JSON
20+
using ShowCases
2021
using FilePathsBase: AbstractPath
2122

2223
include("types.jl")
@@ -31,7 +32,11 @@ export
3132
MLFlowRunDataMetric,
3233
MLFlowRun,
3334
get_info,
34-
get_data
35+
get_data,
36+
MLFlowArtifactFileInfo,
37+
MLFlowArtifactDirInfo,
38+
get_path,
39+
get_size
3540

3641
include("utils.jl")
3742
export
@@ -51,12 +56,10 @@ export
5156
getrun,
5257
updaterun,
5358
deleterun,
54-
searchruns
55-
56-
include("logging.jl")
57-
export
59+
searchruns,
5860
logparam,
5961
logmetric,
60-
logartifact
62+
logartifact,
63+
listartifacts
6164

6265
end

src/logging.jl

Lines changed: 0 additions & 136 deletions
This file was deleted.

0 commit comments

Comments
 (0)