File tree Expand file tree Collapse file tree 8 files changed +336
-174
lines changed Expand file tree Collapse file tree 8 files changed +336
-174
lines changed Original file line number Diff line number Diff line change 1
1
name = " MLFlowClient"
2
2
uuid = " 64a0f543-368b-4a9a-827a-e71edb2a0b83"
3
3
authors = [" @deyandyankov and contributors" ]
4
- version = " 0.2 .0"
4
+ version = " 0.3 .0"
5
5
6
6
[deps ]
7
7
Dates = " ade2ca70-3891-5945-98fb-dc099432e06a"
8
8
FilePathsBase = " 48062228-2e41-5def-b9a4-89aafe57970f"
9
9
HTTP = " cd3eb016-35fb-5094-929b-558a96fad6f3"
10
10
JSON = " 682c06a0-de6a-54ab-a142-c8b1cf79cde6"
11
+ ShowCases = " 605ecd9f-84a6-4c9e-81e2-4798472b76a3"
11
12
URIs = " 5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4"
12
13
UUIDs = " cf7118a7-6976-5b1a-9a39-7adc72f591a4"
13
14
14
15
[compat ]
15
16
FilePathsBase = " 0.9"
16
17
HTTP = " 0.9"
17
18
JSON = " 0.21"
19
+ ShowCases = " 0.1"
18
20
URIs = " 1"
19
21
julia = " 1"
20
22
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ MLFlowRunInfo
16
16
MLFlowRunData
17
17
MLFlowRunDataMetric
18
18
MLFlowRunStatus
19
+ MLFlowArtifactFileInfo
20
+ MLFlowArtifactDirInfo
19
21
```
20
22
21
23
# Experiments
@@ -36,14 +38,10 @@ getrun
36
38
updaterun
37
39
deleterun
38
40
searchruns
39
- ```
40
-
41
- # Logging
42
-
43
- ``` @docs
44
41
logparam
45
42
logmetric
46
43
logartifact
44
+ listartifacts
47
45
```
48
46
49
47
# Utilities
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ using UUIDs
17
17
using HTTP
18
18
using URIs
19
19
using JSON
20
+ using ShowCases
20
21
using FilePathsBase: AbstractPath
21
22
22
23
include (" types.jl" )
@@ -31,7 +32,11 @@ export
31
32
MLFlowRunDataMetric,
32
33
MLFlowRun,
33
34
get_info,
34
- get_data
35
+ get_data,
36
+ MLFlowArtifactFileInfo,
37
+ MLFlowArtifactDirInfo,
38
+ get_path,
39
+ get_size
35
40
36
41
include (" utils.jl" )
37
42
export
@@ -51,12 +56,10 @@ export
51
56
getrun,
52
57
updaterun,
53
58
deleterun,
54
- searchruns
55
-
56
- include (" logging.jl" )
57
- export
59
+ searchruns,
58
60
logparam,
59
61
logmetric,
60
- logartifact
62
+ logartifact,
63
+ listartifacts
61
64
62
65
end
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments