bluer-objects 6.34.1__py3-none-any.whl → 6.36.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of bluer-objects might be problematic. Click here for more details.
- bluer_objects/.abcli/alias.sh +5 -5
- bluer_objects/.abcli/clone.sh +2 -2
- bluer_objects/.abcli/metadata/get.sh +1 -1
- bluer_objects/.abcli/metadata/post.sh +1 -1
- bluer_objects/.abcli/metadata.sh +2 -2
- bluer_objects/.abcli/mlflow/browse.sh +3 -3
- bluer_objects/.abcli/mlflow/cache.sh +3 -3
- bluer_objects/.abcli/mlflow/list_registered_models.sh +1 -1
- bluer_objects/.abcli/mlflow/log_artifacts.sh +1 -1
- bluer_objects/.abcli/mlflow/log_run.sh +1 -1
- bluer_objects/.abcli/mlflow/run.sh +1 -1
- bluer_objects/.abcli/mlflow/tags/clone.sh +1 -1
- bluer_objects/.abcli/mlflow/tags/get.sh +1 -1
- bluer_objects/.abcli/mlflow/tags/search.sh +1 -1
- bluer_objects/.abcli/mlflow/tags/set.sh +1 -1
- bluer_objects/.abcli/mlflow/tags.sh +2 -2
- bluer_objects/.abcli/mlflow/test.sh +1 -1
- bluer_objects/.abcli/mlflow/transition.sh +1 -1
- bluer_objects/.abcli/mlflow.sh +2 -2
- bluer_objects/.abcli/publish.sh +1 -1
- bluer_objects/.abcli/tests/metadata.sh +6 -6
- bluer_objects/.abcli/tests/mlflow_cache.sh +2 -2
- bluer_objects/.abcli/tests/mlflow_logging.sh +2 -2
- bluer_objects/.abcli/tests/mlflow_tags.sh +4 -4
- bluer_objects/.abcli/tests/mlflow_test.sh +1 -1
- bluer_objects/.abcli/upload.sh +1 -1
- bluer_objects/__init__.py +1 -1
- bluer_objects/help/functions.py +4 -0
- bluer_objects/help/metadata.py +152 -0
- bluer_objects/help/mlflow/__init__.py +194 -0
- bluer_objects/help/mlflow/cache.py +42 -0
- bluer_objects/help/mlflow/tags.py +119 -0
- {bluer_objects-6.34.1.dist-info → bluer_objects-6.36.1.dist-info}/METADATA +2 -2
- {bluer_objects-6.34.1.dist-info → bluer_objects-6.36.1.dist-info}/RECORD +37 -34
- bluer_objects/.abcli/cache.sh +0 -5
- {bluer_objects-6.34.1.dist-info → bluer_objects-6.36.1.dist-info}/WHEEL +0 -0
- {bluer_objects-6.34.1.dist-info → bluer_objects-6.36.1.dist-info}/licenses/LICENSE +0 -0
- {bluer_objects-6.34.1.dist-info → bluer_objects-6.36.1.dist-info}/top_level.txt +0 -0
bluer_objects/.abcli/alias.sh
CHANGED
|
@@ -8,9 +8,9 @@ alias @gif=abcli_gif
|
|
|
8
8
|
|
|
9
9
|
alias @assets=abcli_assets
|
|
10
10
|
|
|
11
|
-
alias @cache=
|
|
12
|
-
alias @ref="
|
|
13
|
-
alias @tags=
|
|
11
|
+
alias @cache=bluer_objects_mlflow_cache
|
|
12
|
+
alias @ref="bluer_objects_mlflow_cache read"
|
|
13
|
+
alias @tags=bluer_objects_mlflow_tags
|
|
14
14
|
|
|
15
15
|
alias @clone=bluer_objects_clone
|
|
16
16
|
alias @cp=bluer_objects_clone
|
|
@@ -21,9 +21,9 @@ alias @host=abcli_host
|
|
|
21
21
|
|
|
22
22
|
alias @ls=bluer_ai_ls
|
|
23
23
|
|
|
24
|
-
alias @metadata=
|
|
24
|
+
alias @metadata=bluer_objects_metadata
|
|
25
25
|
|
|
26
|
-
alias @mlflow=
|
|
26
|
+
alias @mlflow=bluer_objects_mlflow
|
|
27
27
|
|
|
28
28
|
alias @mysql=abcli_mysql
|
|
29
29
|
|
bluer_objects/.abcli/clone.sh
CHANGED
|
@@ -36,12 +36,12 @@ function bluer_objects_clone() {
|
|
|
36
36
|
fi
|
|
37
37
|
|
|
38
38
|
[[ "$clone_tags" == 1 ]] &&
|
|
39
|
-
|
|
39
|
+
bluer_objects_mlflow_tags clone \
|
|
40
40
|
$object_1_name \
|
|
41
41
|
$object_2_name
|
|
42
42
|
|
|
43
43
|
[[ "$do_relate" == 1 ]] &&
|
|
44
|
-
|
|
44
|
+
bluer_objects_mlflow_tags set \
|
|
45
45
|
$object_2_name \
|
|
46
46
|
cloned.$object_1_name
|
|
47
47
|
|
bluer_objects/.abcli/metadata.sh
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#! /usr/bin/env bash
|
|
2
2
|
|
|
3
|
-
function
|
|
3
|
+
function bluer_objects_metadata() {
|
|
4
4
|
local task=${1:-help}
|
|
5
5
|
|
|
6
|
-
local function_name="
|
|
6
|
+
local function_name="bluer_objects_metadata_$task"
|
|
7
7
|
if [[ $(type -t $function_name) == "function" ]]; then
|
|
8
8
|
$function_name "${@:2}"
|
|
9
9
|
return
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#! /usr/bin/env bash
|
|
2
2
|
|
|
3
|
-
function
|
|
3
|
+
function bluer_objects_mlflow_browse() {
|
|
4
4
|
local options=$1
|
|
5
5
|
local browse_experiment=$(abcli_option_int "$options" experiment 0)
|
|
6
6
|
|
|
@@ -15,7 +15,7 @@ function abcli_mlflow_browse() {
|
|
|
15
15
|
else
|
|
16
16
|
local object_name=$(abcli_clarify_object $2 .)
|
|
17
17
|
|
|
18
|
-
local experiment_id=$(
|
|
18
|
+
local experiment_id=$(bluer_objects_mlflow get_id $object_name)
|
|
19
19
|
if [ -z "$experiment_id" ]; then
|
|
20
20
|
abcli_log_error "@mlflow: browse: $object_name: object not found."
|
|
21
21
|
return 1
|
|
@@ -25,7 +25,7 @@ function abcli_mlflow_browse() {
|
|
|
25
25
|
url="$url/experiments/$experiment_id"
|
|
26
26
|
|
|
27
27
|
if [[ "$browse_experiment" == 0 ]]; then
|
|
28
|
-
local last_run_id=$(
|
|
28
|
+
local last_run_id=$(bluer_objects_mlflow get_run_id $object_name --count 1)
|
|
29
29
|
abcli_log "last run id: $last_run_id"
|
|
30
30
|
|
|
31
31
|
url="$url/runs/$last_run_id"
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
#! /usr/bin/env bash
|
|
2
2
|
|
|
3
|
-
function
|
|
3
|
+
function bluer_objects_mlflow_cache() {
|
|
4
4
|
local task=$1
|
|
5
5
|
|
|
6
6
|
local keyword=$2
|
|
7
7
|
|
|
8
8
|
if [ "$task" == "read" ]; then
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
bluer_objects_mlflow_tags get \
|
|
11
11
|
$keyword \
|
|
12
12
|
--tag referent \
|
|
13
13
|
"${@:3}"
|
|
@@ -18,7 +18,7 @@ function abcli_mlflow_cache() {
|
|
|
18
18
|
if [ "$task" == "write" ]; then
|
|
19
19
|
local value=$3
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
bluer_objects_mlflow_tags set \
|
|
22
22
|
$keyword \
|
|
23
23
|
referent=$value \
|
|
24
24
|
"${@:4}"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#! /usr/bin/env bash
|
|
2
2
|
|
|
3
|
-
function
|
|
3
|
+
function bluer_objects_mlflow_tags() {
|
|
4
4
|
local task=$1
|
|
5
5
|
|
|
6
|
-
local function_name=
|
|
6
|
+
local function_name=bluer_objects_mlflow_tags_$task
|
|
7
7
|
if [[ $(type -t $function_name) == "function" ]]; then
|
|
8
8
|
$function_name "${@:2}"
|
|
9
9
|
return
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
export ABCLI_MLFLOW_STAGES="Staging|Production|Archived"
|
|
4
4
|
|
|
5
|
-
function
|
|
5
|
+
function bluer_objects_mlflow_transition() {
|
|
6
6
|
local options=$1
|
|
7
7
|
local model_name=$(abcli_option "$options" model)
|
|
8
8
|
local stage_name=$(abcli_option_choice "$options" $(echo $ABCLI_MLFLOW_STAGES | tr \| ,) Staging)
|
bluer_objects/.abcli/mlflow.sh
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
export MLFLOW_TRACKING_URI=$HOME/mlruns
|
|
4
4
|
|
|
5
|
-
function
|
|
5
|
+
function bluer_objects_mlflow() {
|
|
6
6
|
local task=$1
|
|
7
7
|
|
|
8
|
-
local function_name=
|
|
8
|
+
local function_name=bluer_objects_mlflow_$task
|
|
9
9
|
if [[ $(type -t $function_name) == "function" ]]; then
|
|
10
10
|
$function_name "${@:2}"
|
|
11
11
|
return
|
bluer_objects/.abcli/publish.sh
CHANGED
|
@@ -11,7 +11,7 @@ function bluer_ai_publish() {
|
|
|
11
11
|
[[ "$do_download" == 1 ]] &&
|
|
12
12
|
bluer_objects_download - $object_name
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
bluer_objects_mlflow_tags set $object_name published
|
|
15
15
|
|
|
16
16
|
local public_object_name=$(abcli_option "$options" as $object_name)
|
|
17
17
|
|
|
@@ -11,21 +11,21 @@ function test_bluer_objects_metadata() {
|
|
|
11
11
|
local value=$(abcli_string_random)
|
|
12
12
|
|
|
13
13
|
[[ "$post_func" == 1 ]] &&
|
|
14
|
-
|
|
14
|
+
bluer_objects_metadata post \
|
|
15
15
|
$key $value \
|
|
16
16
|
filename \
|
|
17
17
|
$filename \
|
|
18
18
|
--verbose 1
|
|
19
19
|
|
|
20
20
|
[[ "$post_func" == 2 ]] &&
|
|
21
|
-
|
|
21
|
+
bluer_objects_metadata post \
|
|
22
22
|
$key $value \
|
|
23
23
|
object,filename=metadata.yaml \
|
|
24
24
|
$object_name \
|
|
25
25
|
--verbose 1
|
|
26
26
|
|
|
27
27
|
[[ "$post_func" == 3 ]] &&
|
|
28
|
-
|
|
28
|
+
bluer_objects_metadata post \
|
|
29
29
|
$key $value \
|
|
30
30
|
path,filename=metadata.yaml \
|
|
31
31
|
$object_path \
|
|
@@ -33,17 +33,17 @@ function test_bluer_objects_metadata() {
|
|
|
33
33
|
|
|
34
34
|
for get_func in {1..3}; do
|
|
35
35
|
[[ "$get_func" == 1 ]] &&
|
|
36
|
-
returned_value=$(
|
|
36
|
+
returned_value=$(bluer_objects_metadata get \
|
|
37
37
|
key=$key,filename \
|
|
38
38
|
$filename)
|
|
39
39
|
|
|
40
40
|
[[ "$get_func" == 2 ]] &&
|
|
41
|
-
returned_value=$(
|
|
41
|
+
returned_value=$(bluer_objects_metadata get \
|
|
42
42
|
key=$key,filename=metadata.yaml,object \
|
|
43
43
|
$object_name)
|
|
44
44
|
|
|
45
45
|
[[ "$get_func" == 3 ]] &&
|
|
46
|
-
returned_value=$(
|
|
46
|
+
returned_value=$(bluer_objects_metadata get \
|
|
47
47
|
key=$key,filename=metadata.yaml,path \
|
|
48
48
|
$object_path)
|
|
49
49
|
|
|
@@ -4,11 +4,11 @@ function test_bluer_objects_mlflow_cache() {
|
|
|
4
4
|
local keyword="test-keyword-$(abcli_string_timestamp_short)"
|
|
5
5
|
local value="test-value-$(abcli_string_timestamp_short)"
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
bluer_objects_mlflow cache write \
|
|
8
8
|
$keyword $value
|
|
9
9
|
[[ $? -ne 0 ]] && return 1
|
|
10
10
|
|
|
11
11
|
abcli_assert \
|
|
12
|
-
$(
|
|
12
|
+
$(bluer_objects_mlflow cache read $keyword) \
|
|
13
13
|
$value
|
|
14
14
|
}
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
function test_bluer_objects_mlflow_logging() {
|
|
4
4
|
local object_name="test-object-$(abcli_string_timestamp_short)"
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
bluer_objects_clone \
|
|
7
7
|
upload \
|
|
8
8
|
vanwatch-mlflow-validation-2024-09-23-10673 \
|
|
9
9
|
"$object_name"
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
bluer_objects_mlflow rm $object_name
|
|
12
12
|
}
|
|
@@ -5,25 +5,25 @@ function test_bluer_objects_mlflow_tags_validation() {
|
|
|
5
5
|
local tag="test-tag-$(abcli_string_timestamp_short)"
|
|
6
6
|
local value="test-value-$(abcli_string_timestamp_short)"
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
bluer_objects_mlflow tags set \
|
|
9
9
|
$object_name \
|
|
10
10
|
$tag=$value
|
|
11
11
|
[[ $? -ne 0 ]] && return 1
|
|
12
12
|
|
|
13
13
|
abcli_assert \
|
|
14
|
-
"$(
|
|
14
|
+
"$(bluer_objects_mlflow tags get $object_name --tag $tag)" \
|
|
15
15
|
$value
|
|
16
16
|
[[ $? -ne 0 ]] && return 1
|
|
17
17
|
|
|
18
18
|
abcli_assert \
|
|
19
|
-
"$(
|
|
19
|
+
"$(bluer_objects_mlflow tags get $object_name --tag some-tag)" \
|
|
20
20
|
- empty
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
function test_bluer_objects_mlflow_tags_search() {
|
|
24
24
|
local options=$1
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
bluer_objects_mlflow_tags search \
|
|
27
27
|
cloned.firms_area-template-v1=True \
|
|
28
28
|
--log 0
|
|
29
29
|
}
|
bluer_objects/.abcli/upload.sh
CHANGED
bluer_objects/__init__.py
CHANGED
bluer_objects/help/functions.py
CHANGED
|
@@ -3,6 +3,8 @@ from bluer_ai.help.generic import help_functions as generic_help_functions
|
|
|
3
3
|
from bluer_objects import ALIAS
|
|
4
4
|
from bluer_objects.help.clone import help_clone
|
|
5
5
|
from bluer_objects.help.download import help_download
|
|
6
|
+
from bluer_objects.help.metadata import help_functions as help_metadata
|
|
7
|
+
from bluer_objects.help.mlflow import help_functions as help_mlflow
|
|
6
8
|
from bluer_objects.help.upload import help_upload
|
|
7
9
|
|
|
8
10
|
help_functions = generic_help_functions(plugin_name=ALIAS)
|
|
@@ -11,6 +13,8 @@ help_functions.update(
|
|
|
11
13
|
{
|
|
12
14
|
"clone": help_clone,
|
|
13
15
|
"download": help_download,
|
|
16
|
+
"metadata": help_metadata,
|
|
17
|
+
"mlflow": help_mlflow,
|
|
14
18
|
"upload": help_upload,
|
|
15
19
|
}
|
|
16
20
|
)
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
|
|
3
|
+
from bluer_options.terminal import show_usage, xtra
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def help_get(
|
|
7
|
+
tokens: List[str],
|
|
8
|
+
mono: bool,
|
|
9
|
+
) -> str:
|
|
10
|
+
# ---
|
|
11
|
+
options = "".join(
|
|
12
|
+
[
|
|
13
|
+
xtra("delim=+,dict.keys,dict.values,", mono=mono),
|
|
14
|
+
"filename,key=<key>",
|
|
15
|
+
]
|
|
16
|
+
)
|
|
17
|
+
usage_1 = show_usage(
|
|
18
|
+
[
|
|
19
|
+
"@metadata",
|
|
20
|
+
"get",
|
|
21
|
+
f"[{options}]",
|
|
22
|
+
"<filename.yaml>",
|
|
23
|
+
],
|
|
24
|
+
"get <filename.yaml>[<key>]",
|
|
25
|
+
mono=mono,
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
# ---
|
|
29
|
+
options = "".join(
|
|
30
|
+
[
|
|
31
|
+
xtra("delim=+,dict.keys,dict.values,filename=<metadata.yaml>,", mono=mono),
|
|
32
|
+
"key=<key>,object",
|
|
33
|
+
]
|
|
34
|
+
)
|
|
35
|
+
usage_2 = show_usage(
|
|
36
|
+
[
|
|
37
|
+
"@metadata",
|
|
38
|
+
"get",
|
|
39
|
+
f"[{options}]",
|
|
40
|
+
"[.|<object-name>]",
|
|
41
|
+
],
|
|
42
|
+
"get <object-name>/metadata[<key>]",
|
|
43
|
+
mono=mono,
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
# ---
|
|
47
|
+
options = "".join(
|
|
48
|
+
[
|
|
49
|
+
xtra("delim=+,dict.keys,dict.values,filename=<metadata.yaml>,", mono=mono),
|
|
50
|
+
"key=<key>,path",
|
|
51
|
+
]
|
|
52
|
+
)
|
|
53
|
+
usage_3 = show_usage(
|
|
54
|
+
[
|
|
55
|
+
"@metadata",
|
|
56
|
+
"get",
|
|
57
|
+
f"[{options}]",
|
|
58
|
+
"<path>",
|
|
59
|
+
],
|
|
60
|
+
"get <path>/metadata[<key>]",
|
|
61
|
+
mono=mono,
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
return "\n".join(
|
|
65
|
+
[
|
|
66
|
+
usage_1,
|
|
67
|
+
usage_2,
|
|
68
|
+
usage_3,
|
|
69
|
+
]
|
|
70
|
+
)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def help_post(
|
|
74
|
+
tokens: List[str],
|
|
75
|
+
mono: bool,
|
|
76
|
+
) -> str:
|
|
77
|
+
args = ["[--verbose 1]"]
|
|
78
|
+
|
|
79
|
+
# ---
|
|
80
|
+
options = "filename"
|
|
81
|
+
|
|
82
|
+
usage_1 = show_usage(
|
|
83
|
+
[
|
|
84
|
+
"@metadata",
|
|
85
|
+
"post",
|
|
86
|
+
"<key>",
|
|
87
|
+
"<value>",
|
|
88
|
+
f"{options}",
|
|
89
|
+
"<filename.yaml>",
|
|
90
|
+
]
|
|
91
|
+
+ args,
|
|
92
|
+
"<filename.yaml>[<key>] = <value>",
|
|
93
|
+
mono=mono,
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
# ---
|
|
97
|
+
options = "".join(
|
|
98
|
+
[
|
|
99
|
+
"object",
|
|
100
|
+
xtra(",filename=<metadata.yaml>", mono=mono),
|
|
101
|
+
]
|
|
102
|
+
)
|
|
103
|
+
|
|
104
|
+
usage_2 = show_usage(
|
|
105
|
+
[
|
|
106
|
+
"@metadata",
|
|
107
|
+
"post",
|
|
108
|
+
"<key>",
|
|
109
|
+
"<value>",
|
|
110
|
+
f"{options}",
|
|
111
|
+
"[.|<object-name>]",
|
|
112
|
+
]
|
|
113
|
+
+ args,
|
|
114
|
+
"<object-name>[<key>] = <value>",
|
|
115
|
+
mono=mono,
|
|
116
|
+
)
|
|
117
|
+
|
|
118
|
+
# ---
|
|
119
|
+
options = "".join(
|
|
120
|
+
[
|
|
121
|
+
"path",
|
|
122
|
+
xtra(",filename=<metadata.yaml>", mono=mono),
|
|
123
|
+
]
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
usage_3 = show_usage(
|
|
127
|
+
[
|
|
128
|
+
"@metadata",
|
|
129
|
+
"post",
|
|
130
|
+
"<key>",
|
|
131
|
+
"<value>",
|
|
132
|
+
f"{options}",
|
|
133
|
+
"<path>",
|
|
134
|
+
]
|
|
135
|
+
+ args,
|
|
136
|
+
"<path>[<key>] = <value>",
|
|
137
|
+
mono=mono,
|
|
138
|
+
)
|
|
139
|
+
|
|
140
|
+
return "\n".join(
|
|
141
|
+
[
|
|
142
|
+
usage_1,
|
|
143
|
+
usage_2,
|
|
144
|
+
usage_3,
|
|
145
|
+
]
|
|
146
|
+
)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
help_functions = {
|
|
150
|
+
"get": help_get,
|
|
151
|
+
"post": help_post,
|
|
152
|
+
}
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
|
|
3
|
+
from bluer_options.terminal import show_usage, xtra
|
|
4
|
+
|
|
5
|
+
from bluer_objects.help.mlflow.cache import help_functions as help_cache
|
|
6
|
+
from bluer_objects.help.mlflow.tags import help_functions as help_tags
|
|
7
|
+
from bluer_ai import env
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def help_browse(
|
|
11
|
+
tokens: List[str],
|
|
12
|
+
mono: bool,
|
|
13
|
+
) -> str:
|
|
14
|
+
options = "databricks,experiment,host,models"
|
|
15
|
+
|
|
16
|
+
return show_usage(
|
|
17
|
+
[
|
|
18
|
+
"@mlflow",
|
|
19
|
+
"browse",
|
|
20
|
+
f"[{options}]",
|
|
21
|
+
"[.|<object-name>]",
|
|
22
|
+
],
|
|
23
|
+
"browse mlflow.",
|
|
24
|
+
mono=mono,
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def help_get_id(
|
|
29
|
+
tokens: List[str],
|
|
30
|
+
mono: bool,
|
|
31
|
+
) -> str:
|
|
32
|
+
return show_usage(
|
|
33
|
+
[
|
|
34
|
+
"@mlflow",
|
|
35
|
+
"get_id",
|
|
36
|
+
"[.|<object-name>]",
|
|
37
|
+
],
|
|
38
|
+
"get mlflow id for <object-name>.",
|
|
39
|
+
mono=mono,
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def help_get_run_id(
|
|
44
|
+
tokens: List[str],
|
|
45
|
+
mono: bool,
|
|
46
|
+
) -> str:
|
|
47
|
+
args = [
|
|
48
|
+
"[--count <1>]",
|
|
49
|
+
"[--delim <space>]",
|
|
50
|
+
"[--offset <0>]",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
return show_usage(
|
|
54
|
+
[
|
|
55
|
+
"@mlflow",
|
|
56
|
+
"get_run_id",
|
|
57
|
+
"[.|<object-name>]",
|
|
58
|
+
]
|
|
59
|
+
+ args,
|
|
60
|
+
"get mlflow run ids for <object-name>.",
|
|
61
|
+
mono=mono,
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def help_list_registered_models(
|
|
66
|
+
tokens: List[str],
|
|
67
|
+
mono: bool,
|
|
68
|
+
) -> str:
|
|
69
|
+
return show_usage(
|
|
70
|
+
[
|
|
71
|
+
"@mlflow",
|
|
72
|
+
"list_registered_models",
|
|
73
|
+
],
|
|
74
|
+
"list mlflow registered models.",
|
|
75
|
+
mono=mono,
|
|
76
|
+
)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
def help_log_artifacts(
|
|
80
|
+
tokens: List[str],
|
|
81
|
+
mono: bool,
|
|
82
|
+
) -> str:
|
|
83
|
+
args = ["[--model_name <model-name>]"]
|
|
84
|
+
|
|
85
|
+
return show_usage(
|
|
86
|
+
[
|
|
87
|
+
"@mlflow",
|
|
88
|
+
"log_artifacts",
|
|
89
|
+
"[.|<object-name>]",
|
|
90
|
+
]
|
|
91
|
+
+ args,
|
|
92
|
+
"<object-name> -artifacts-> mlflow.",
|
|
93
|
+
mono=mono,
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
def help_log_run(
|
|
98
|
+
tokens: List[str],
|
|
99
|
+
mono: bool,
|
|
100
|
+
) -> str:
|
|
101
|
+
return show_usage(
|
|
102
|
+
[
|
|
103
|
+
"@mlflow",
|
|
104
|
+
"log_run",
|
|
105
|
+
"[.|<object-name>]",
|
|
106
|
+
],
|
|
107
|
+
"<object-name> -run-> mlflow.",
|
|
108
|
+
mono=mono,
|
|
109
|
+
)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
def help_rm(
|
|
113
|
+
tokens: List[str],
|
|
114
|
+
mono: bool,
|
|
115
|
+
) -> str:
|
|
116
|
+
return show_usage(
|
|
117
|
+
[
|
|
118
|
+
"@mlflow",
|
|
119
|
+
"rm",
|
|
120
|
+
"[.|<object-name>]",
|
|
121
|
+
],
|
|
122
|
+
"rm <object-name> from mlflow.",
|
|
123
|
+
mono=mono,
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
def help_run(
|
|
128
|
+
tokens: List[str],
|
|
129
|
+
mono: bool,
|
|
130
|
+
) -> str:
|
|
131
|
+
return show_usage(
|
|
132
|
+
[
|
|
133
|
+
"@mlflow",
|
|
134
|
+
"run",
|
|
135
|
+
"start | end",
|
|
136
|
+
"[.|<object-name>]",
|
|
137
|
+
],
|
|
138
|
+
"start | end mlflow run.",
|
|
139
|
+
mono=mono,
|
|
140
|
+
)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
def help_test(
|
|
144
|
+
tokens: List[str],
|
|
145
|
+
mono: bool,
|
|
146
|
+
) -> str:
|
|
147
|
+
options = xtra("dryrun", mono=mono)
|
|
148
|
+
|
|
149
|
+
return show_usage(
|
|
150
|
+
[
|
|
151
|
+
"@mlflow",
|
|
152
|
+
"test",
|
|
153
|
+
f"[{options}]",
|
|
154
|
+
],
|
|
155
|
+
"test mlflow.",
|
|
156
|
+
mono=mono,
|
|
157
|
+
)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
def help_transition(
|
|
161
|
+
tokens: List[str],
|
|
162
|
+
mono: bool,
|
|
163
|
+
) -> str:
|
|
164
|
+
options = "model=<model-name>,stage=<stage>,version=<version>"
|
|
165
|
+
|
|
166
|
+
return show_usage(
|
|
167
|
+
[
|
|
168
|
+
"@mlflow",
|
|
169
|
+
"transition",
|
|
170
|
+
f"[{options}]",
|
|
171
|
+
"[<description>]",
|
|
172
|
+
],
|
|
173
|
+
"transition <model-name>.",
|
|
174
|
+
{
|
|
175
|
+
"stage: {}".format(" | ".join(env.ABCLI_MLFLOW_STAGES.split("|"))): "",
|
|
176
|
+
},
|
|
177
|
+
mono=mono,
|
|
178
|
+
)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
help_functions = {
|
|
182
|
+
"browse": help_browse,
|
|
183
|
+
"cache": help_cache,
|
|
184
|
+
"get_id": help_get_id,
|
|
185
|
+
"get_run_id": help_get_run_id,
|
|
186
|
+
"list_registered_models": help_list_registered_models,
|
|
187
|
+
"log_artifacts": help_log_artifacts,
|
|
188
|
+
"log_run": help_log_run,
|
|
189
|
+
"rm": help_rm,
|
|
190
|
+
"run": help_run,
|
|
191
|
+
"tags": help_tags,
|
|
192
|
+
"test": help_test,
|
|
193
|
+
"transition": help_transition,
|
|
194
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
|
|
3
|
+
from bluer_options.terminal import show_usage
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def help_read(
|
|
7
|
+
tokens: List[str],
|
|
8
|
+
mono: bool,
|
|
9
|
+
) -> str:
|
|
10
|
+
return show_usage(
|
|
11
|
+
[
|
|
12
|
+
"@mlflow",
|
|
13
|
+
"cache",
|
|
14
|
+
"read",
|
|
15
|
+
"<keyword>",
|
|
16
|
+
],
|
|
17
|
+
"read mlflow.cache[<keyword>].",
|
|
18
|
+
mono=mono,
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def help_write(
|
|
23
|
+
tokens: List[str],
|
|
24
|
+
mono: bool,
|
|
25
|
+
) -> str:
|
|
26
|
+
return show_usage(
|
|
27
|
+
[
|
|
28
|
+
"@mlflow",
|
|
29
|
+
"cache",
|
|
30
|
+
"write",
|
|
31
|
+
"<keyword>",
|
|
32
|
+
"<value>",
|
|
33
|
+
],
|
|
34
|
+
"write mlflow.cache[<keyword>]=value.",
|
|
35
|
+
mono=mono,
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
help_functions = {
|
|
40
|
+
"read": help_read,
|
|
41
|
+
"write": help_write,
|
|
42
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
|
|
3
|
+
from bluer_options.terminal import show_usage, xtra
|
|
4
|
+
|
|
5
|
+
search_args = [
|
|
6
|
+
"[--count <-1>]",
|
|
7
|
+
"[--delim <space>]",
|
|
8
|
+
"[--log <0>]",
|
|
9
|
+
"[--offset <0>]",
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def help_clone(
|
|
14
|
+
tokens: List[str],
|
|
15
|
+
mono: bool,
|
|
16
|
+
) -> str:
|
|
17
|
+
return show_usage(
|
|
18
|
+
[
|
|
19
|
+
"@mlflow",
|
|
20
|
+
"tags",
|
|
21
|
+
"clone",
|
|
22
|
+
"[..|<object-1>]",
|
|
23
|
+
"[.|<object-2>]",
|
|
24
|
+
],
|
|
25
|
+
"clone mlflow tags.",
|
|
26
|
+
mono=mono,
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def help_get(
|
|
31
|
+
tokens: List[str],
|
|
32
|
+
mono: bool,
|
|
33
|
+
) -> str:
|
|
34
|
+
args = ["[--tag <tag>]"]
|
|
35
|
+
|
|
36
|
+
return show_usage(
|
|
37
|
+
[
|
|
38
|
+
"@mlflow",
|
|
39
|
+
"tags",
|
|
40
|
+
"get",
|
|
41
|
+
"[.|<object-name>]",
|
|
42
|
+
]
|
|
43
|
+
+ args,
|
|
44
|
+
"get mlflow tags|<tag> for <object-name>.",
|
|
45
|
+
mono=mono,
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def help_search(
|
|
50
|
+
tokens: List[str],
|
|
51
|
+
mono: bool,
|
|
52
|
+
) -> str:
|
|
53
|
+
options = "explicit"
|
|
54
|
+
|
|
55
|
+
usage_1 = show_usage(
|
|
56
|
+
[
|
|
57
|
+
"@mlflow",
|
|
58
|
+
"tags",
|
|
59
|
+
"search",
|
|
60
|
+
f"[{options}]",
|
|
61
|
+
]
|
|
62
|
+
+ search_args
|
|
63
|
+
+ ["[--filter_string <filter-string>]"],
|
|
64
|
+
"search mlflow for <filter-string>",
|
|
65
|
+
{
|
|
66
|
+
"<finter-string>: https://www.mlflow.org/docs/latest/search-experiments.html": ""
|
|
67
|
+
},
|
|
68
|
+
mono=mono,
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
# ---
|
|
72
|
+
|
|
73
|
+
options = "<keyword-1>=<value-1>,<keyword-2>,~<keyword-3>"
|
|
74
|
+
|
|
75
|
+
usage_2 = show_usage(
|
|
76
|
+
[
|
|
77
|
+
"@mlflow",
|
|
78
|
+
"tags",
|
|
79
|
+
"search",
|
|
80
|
+
f"[{options}]",
|
|
81
|
+
]
|
|
82
|
+
+ search_args,
|
|
83
|
+
"search mlflow.",
|
|
84
|
+
mono=mono,
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
return "\n".join(
|
|
88
|
+
[
|
|
89
|
+
usage_1,
|
|
90
|
+
usage_2,
|
|
91
|
+
]
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def help_set(
|
|
96
|
+
tokens: List[str],
|
|
97
|
+
mono: bool,
|
|
98
|
+
) -> str:
|
|
99
|
+
options = "<keyword-1>=<value>,<keyword-2>,~<keyword-3>"
|
|
100
|
+
|
|
101
|
+
return show_usage(
|
|
102
|
+
[
|
|
103
|
+
"@mlflow",
|
|
104
|
+
"tags",
|
|
105
|
+
"set",
|
|
106
|
+
"[.|<object-name>]",
|
|
107
|
+
f"[{options}]",
|
|
108
|
+
],
|
|
109
|
+
"set tags in mlflow.",
|
|
110
|
+
mono=mono,
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
help_functions = {
|
|
115
|
+
"clone": help_clone,
|
|
116
|
+
"get": help_get,
|
|
117
|
+
"search": help_search,
|
|
118
|
+
"set": help_set,
|
|
119
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bluer_objects
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.36.1
|
|
4
4
|
Summary: 🌀 data objects for Bash.
|
|
5
5
|
Home-page: https://github.com/kamangir/bluer-objects
|
|
6
6
|
Author: Arash Abadpour (Kamangir)
|
|
@@ -53,6 +53,6 @@ Also home to [blue README](https://github.com/kamangir/bluer-objects/blob/main/b
|
|
|
53
53
|
|
|
54
54
|
[](https://github.com/kamangir/bluer-objects/actions/workflows/pylint.yml) [](https://github.com/kamangir/bluer-objects/actions/workflows/pytest.yml) [](https://github.com/kamangir/bluer-objects/actions/workflows/bashtest.yml) [](https://pypi.org/project/bluer-objects/) [](https://pypistats.org/packages/bluer-objects)
|
|
55
55
|
|
|
56
|
-
built by 🌀 [`bluer_options-5.28.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_objects-6.
|
|
56
|
+
built by 🌀 [`bluer_options-5.28.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`bluer_objects-6.36.1`](https://github.com/kamangir/bluer-objects).
|
|
57
57
|
|
|
58
58
|
built by 🌀 [`blueness-3.96.1`](https://github.com/kamangir/blueness).
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
bluer_objects/__init__.py,sha256=
|
|
1
|
+
bluer_objects/__init__.py,sha256=warnT0RjrgvQRLzrZXVvYFmgkB0bPiamTvJTGAVX3ks,310
|
|
2
2
|
bluer_objects/__main__.py,sha256=Yqfov833_hJuRne19WrGhT5DWAPtdffpoMxeSXS7EGw,359
|
|
3
3
|
bluer_objects/config.env,sha256=TzX3WyJjwEs9V-NzK3FBUyePhb0i2ZoCja-lhDF_xJU,116
|
|
4
4
|
bluer_objects/env.py,sha256=4g_JNKr1uBh8bg39zXLYOCizlWD9_0fpDUYliNgpmj4,1225
|
|
@@ -10,37 +10,36 @@ bluer_objects/urls.py,sha256=paHaYlLMQOI46-EYNch5ohu9Q09BMkF2vvJy1QufrVI,19
|
|
|
10
10
|
bluer_objects/.abcli/abcli.sh,sha256=8RDi_vCZfB6JOeGSJWcmmzZv2pS4o-_j250rFYG7Ljc,202
|
|
11
11
|
bluer_objects/.abcli/actions.sh,sha256=HZI-X5KUy6bXEHmxywfBN1zbHalU0mcTblTQ2HvIfOE,236
|
|
12
12
|
bluer_objects/.abcli/aka.sh,sha256=odRbw4KZb9Ld7uXny6H2pPi64_5kowKX3s68N6YvRmI,23
|
|
13
|
-
bluer_objects/.abcli/alias.sh,sha256=
|
|
13
|
+
bluer_objects/.abcli/alias.sh,sha256=gSZ_KQ-iHH91PmZ1i_rqO8ERmXTBcDMFOjawsRQI7nU,630
|
|
14
14
|
bluer_objects/.abcli/bluer_objects.sh,sha256=24qMYZImMHREqtYRFdDwIP_TaRnb9RBtUL836RtZWG0,204
|
|
15
|
-
bluer_objects/.abcli/
|
|
16
|
-
bluer_objects/.abcli/clone.sh,sha256=emB-TWdDFlwAK_06_oADBLGhhO9nyTocHMGGsK2nrCs,1929
|
|
15
|
+
bluer_objects/.abcli/clone.sh,sha256=8ri9hNdvP8-tjJLJzPxuNcqD8Phv0htMD1-bGsbFUiU,1945
|
|
17
16
|
bluer_objects/.abcli/download.sh,sha256=eZVG2M6MjEhp4IEhuxYDSiKjEOr84zNUNTKI7xTOpMk,555
|
|
18
17
|
bluer_objects/.abcli/file.sh,sha256=djcHSFS8fqlCsoDyZKmimNTzd-jOUnxbOFpL7xq_hGk,150
|
|
19
18
|
bluer_objects/.abcli/gif.sh,sha256=cSU4rDO_6LWnK1C9fUKpf1Gja8Nn0huIMsk0jhru84M,771
|
|
20
19
|
bluer_objects/.abcli/host.sh,sha256=k1fX5qAUKECxtIBmOP6U-CXHbEUEurjZUYlrVIjo7_Q,556
|
|
21
20
|
bluer_objects/.abcli/ls.sh,sha256=CG6tPvxkXxa7SqK9DwLJLyjaekqDpYJFLYdjuURzeIA,611
|
|
22
|
-
bluer_objects/.abcli/metadata.sh,sha256=
|
|
23
|
-
bluer_objects/.abcli/mlflow.sh,sha256=
|
|
21
|
+
bluer_objects/.abcli/metadata.sh,sha256=BA1Mnf7_Zy7kiUp0UrDaJogTaBOtG-IwuTaeY8avbzI,374
|
|
22
|
+
bluer_objects/.abcli/mlflow.sh,sha256=nlQP0-LTzVG5OsvCgC0ybVkP3enh4K00OFF4sHakxYs,660
|
|
24
23
|
bluer_objects/.abcli/object.sh,sha256=nzXPfgS2nicI-3dNVjC-xw9QKdWN1mtUcy7VmLGyWR8,816
|
|
25
|
-
bluer_objects/.abcli/publish.sh,sha256=
|
|
24
|
+
bluer_objects/.abcli/publish.sh,sha256=jnLEA9y6yT8SU0wexXCbGWCoCOteHQQMmE27fF9ouOo,1878
|
|
26
25
|
bluer_objects/.abcli/select.sh,sha256=oXT3KBaTDOd8xlurALDIxhzbOTVOFyGpLTseqPxtNqU,863
|
|
27
26
|
bluer_objects/.abcli/storage.sh,sha256=iYHxdXJI9sGR-WKxDuYKOB06FccSQ0G0-uZn9UJQGnc,321
|
|
28
|
-
bluer_objects/.abcli/upload.sh,sha256=
|
|
29
|
-
bluer_objects/.abcli/metadata/get.sh,sha256=
|
|
30
|
-
bluer_objects/.abcli/metadata/post.sh,sha256=
|
|
31
|
-
bluer_objects/.abcli/mlflow/browse.sh,sha256=
|
|
32
|
-
bluer_objects/.abcli/mlflow/cache.sh,sha256=
|
|
33
|
-
bluer_objects/.abcli/mlflow/list_registered_models.sh,sha256=
|
|
34
|
-
bluer_objects/.abcli/mlflow/log_artifacts.sh,sha256=
|
|
35
|
-
bluer_objects/.abcli/mlflow/log_run.sh,sha256=
|
|
36
|
-
bluer_objects/.abcli/mlflow/run.sh,sha256=
|
|
37
|
-
bluer_objects/.abcli/mlflow/tags.sh,sha256=
|
|
38
|
-
bluer_objects/.abcli/mlflow/test.sh,sha256=
|
|
39
|
-
bluer_objects/.abcli/mlflow/transition.sh,sha256=
|
|
40
|
-
bluer_objects/.abcli/mlflow/tags/clone.sh,sha256=
|
|
41
|
-
bluer_objects/.abcli/mlflow/tags/get.sh,sha256=
|
|
42
|
-
bluer_objects/.abcli/mlflow/tags/search.sh,sha256=
|
|
43
|
-
bluer_objects/.abcli/mlflow/tags/set.sh,sha256=
|
|
27
|
+
bluer_objects/.abcli/upload.sh,sha256=hUqGDyUEFF9tj7KHqioBvvQU1vjN978eHz-DPecf1bY,523
|
|
28
|
+
bluer_objects/.abcli/metadata/get.sh,sha256=p8EmWVulzfim7cpyclhrmXvNBGEqtht51ohZV47MpwU,811
|
|
29
|
+
bluer_objects/.abcli/metadata/post.sh,sha256=qHTuFi8RdmIoAOTMstKNEe5R3dW4hT5NJrz7u0KB-AU,561
|
|
30
|
+
bluer_objects/.abcli/mlflow/browse.sh,sha256=fpRfK01jdZtA6BKaLKRJVDzoM3lU7ASIoKwoedv7vv4,1173
|
|
31
|
+
bluer_objects/.abcli/mlflow/cache.sh,sha256=JHEnDOtiJaKxFam_wbsNVKWruI3EoIEqGrVAjwT3Kyg,553
|
|
32
|
+
bluer_objects/.abcli/mlflow/list_registered_models.sh,sha256=cZGtAzfLx-kW3-zi0mLrfhzk4B8KyUL2sq2tD7lK5q8,191
|
|
33
|
+
bluer_objects/.abcli/mlflow/log_artifacts.sh,sha256=rLqK2kO9bTF9nqZDgf4P2KrK2SdWmgeVAXfcpdMs_GY,240
|
|
34
|
+
bluer_objects/.abcli/mlflow/log_run.sh,sha256=K2SDZZ88Pk1WGU1kz3DoaUXbGDrZLFaDsmSYLSUM_Q8,228
|
|
35
|
+
bluer_objects/.abcli/mlflow/run.sh,sha256=XgW-3BCfi_uWtIlwUq029C5hG6wBDltswy5NpUaVCY8,257
|
|
36
|
+
bluer_objects/.abcli/mlflow/tags.sh,sha256=7BZlSnoqSFZmW-8AA4W2dWkk3NPvCzEevQsqODIL62o,370
|
|
37
|
+
bluer_objects/.abcli/mlflow/test.sh,sha256=HDjCEGH7--S7pCCINIPxATe8rhQUgA0XlXyWXMcOD9o,250
|
|
38
|
+
bluer_objects/.abcli/mlflow/transition.sh,sha256=eltGLMGl1NmSJNm0xy_urbu379ONG9YoQhUnXMTXgF0,606
|
|
39
|
+
bluer_objects/.abcli/mlflow/tags/clone.sh,sha256=7RmBN55NJXWkXC_TFqNHmtR-9cxnxZnmnXFubFqwzC4,431
|
|
40
|
+
bluer_objects/.abcli/mlflow/tags/get.sh,sha256=tJb2jIjLcyIicq8erOCpYeFTwQoVorqjPTs1cZm-Ckc,230
|
|
41
|
+
bluer_objects/.abcli/mlflow/tags/search.sh,sha256=_qjMJiJ3Vuk84wf51BIOr1drw01vznU62QdKl3kDlYo,296
|
|
42
|
+
bluer_objects/.abcli/mlflow/tags/set.sh,sha256=_vDZf5qL4_yDcZIh7sFShXV7TSyaqxujfVkZiJUKFDA,274
|
|
44
43
|
bluer_objects/.abcli/storage/clear.sh,sha256=pneKhggVbNQ3vbIWeipgjTbkzzTiFZGggoXJu7OAyrw,1248
|
|
45
44
|
bluer_objects/.abcli/storage/download_file.sh,sha256=2ZQgsxzSYw5Zwcj5XQn-NcHI_MkmzmmZWLM4D1ev1N4,203
|
|
46
45
|
bluer_objects/.abcli/storage/exists.sh,sha256=0b8wgjts1z8GZbE_KeulbrG471hACKORPPcwwqRvYNE,163
|
|
@@ -53,11 +52,11 @@ bluer_objects/.abcli/tests/gif.sh,sha256=bGDNvAsKBDsIdC_vBNzsNe7YC2jxBZdCo46LY9Y
|
|
|
53
52
|
bluer_objects/.abcli/tests/help.sh,sha256=K55yGyL7bIPYawEj5RYXgx47zKbsO8RFGrSZGBCKOR8,1799
|
|
54
53
|
bluer_objects/.abcli/tests/host.sh,sha256=yvWymyoJgdCjrNFQuvw9rB4GWakjgyuf4iqGhswC0QA,133
|
|
55
54
|
bluer_objects/.abcli/tests/ls.sh,sha256=CbJUpEhAinnK606oWmqTumOYw0YywOMOOPh4hX5ZVAs,198
|
|
56
|
-
bluer_objects/.abcli/tests/metadata.sh,sha256=
|
|
57
|
-
bluer_objects/.abcli/tests/mlflow_cache.sh,sha256=
|
|
58
|
-
bluer_objects/.abcli/tests/mlflow_logging.sh,sha256=
|
|
59
|
-
bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=
|
|
60
|
-
bluer_objects/.abcli/tests/mlflow_test.sh,sha256=
|
|
55
|
+
bluer_objects/.abcli/tests/metadata.sh,sha256=NsWYxHpBMFq9JpxsQS1u6lXYjBSZ41la49XtTrONMm8,1658
|
|
56
|
+
bluer_objects/.abcli/tests/mlflow_cache.sh,sha256=Z-H_sq7nk4ltlco1kwDS-tPeiVPtCNjHTC2NzNGGFrg,379
|
|
57
|
+
bluer_objects/.abcli/tests/mlflow_logging.sh,sha256=ADWs_etGq6EKxUUVE-iNvD9KH4oPv0o1IF8IlBhbooY,302
|
|
58
|
+
bluer_objects/.abcli/tests/mlflow_tags.sh,sha256=X37Le8GzFXGiVcz7g6TgXoqCRzQn31opz_76qkBR-j4,796
|
|
59
|
+
bluer_objects/.abcli/tests/mlflow_test.sh,sha256=7MXxYq2GgD2MEJbQlpx80qLT2HaaVn_PFFMpSA_hWA4,125
|
|
61
60
|
bluer_objects/.abcli/tests/storage.sh,sha256=LTLYN5X_lfqJVeBwMop4GlQbs50dxhAkSRbM32KHY2g,1175
|
|
62
61
|
bluer_objects/.abcli/tests/version.sh,sha256=cKf8z0KJKNawIHo_6RE0M5KAJ_ZpicTzyer5PMOVXCk,166
|
|
63
62
|
bluer_objects/README/__init__.py,sha256=BmSX0KzYCTAc2_wwi8QWGSt7PYKNK46IYD0VPr_xJMk,692
|
|
@@ -80,8 +79,12 @@ bluer_objects/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
|
80
79
|
bluer_objects/help/__main__.py,sha256=Dxg-JpMOIlYWZklI_J2LyiHnRui5lUwWmfM7FLRzUXA,237
|
|
81
80
|
bluer_objects/help/clone.py,sha256=PDnQs7zc4sqmoBHPjVRfX7jIaePiohPGCNA5bxeerik,553
|
|
82
81
|
bluer_objects/help/download.py,sha256=1fw3ASOXUuXcNhm8y0AK7ZBmXzWwZvdo2hK9ZVbgteA,439
|
|
83
|
-
bluer_objects/help/functions.py,sha256
|
|
82
|
+
bluer_objects/help/functions.py,sha256=-nGOCD267sOTfxp2Z9PQH4fV1qwDUCbgx0zJ8xysRFM,659
|
|
83
|
+
bluer_objects/help/metadata.py,sha256=fk22NasBcZU1ffY4fu6AxrCzMQtTI28p_ghaSVRrrPM,2811
|
|
84
84
|
bluer_objects/help/upload.py,sha256=p-nRw9d_S6PI7PcD0mBwWqQRPWQG4r3usjvOIzAbTeM,368
|
|
85
|
+
bluer_objects/help/mlflow/__init__.py,sha256=RMYjQDHw-gBTi4PAw9Mgdq4s5N7E0h-1dJ80EaVh5Uw,3695
|
|
86
|
+
bluer_objects/help/mlflow/cache.py,sha256=O8O1oaiq1e1z2HCi8fRe4hjSNimzvCaCAIu-u2GDHkE,704
|
|
87
|
+
bluer_objects/help/mlflow/tags.py,sha256=C3FcMRe-JhelhCQkAyZ5jlxGtgYxhNjtIhxka8k_ytI,2137
|
|
85
88
|
bluer_objects/host/__init__.py,sha256=Ko43SWnZNsGKuIPU_l0w17pYrxCgVHQx3_zEoUNaHZY,272
|
|
86
89
|
bluer_objects/host/__main__.py,sha256=J0MO2sUzrI_t_X4VVYyM6n41ND0yhhSXOmZSkDAC4rg,1751
|
|
87
90
|
bluer_objects/host/functions.py,sha256=ADups78hYZDAnC6FlIICQ48WkFd4sPnRMWA0D6X-FV4,1663
|
|
@@ -130,8 +133,8 @@ bluer_objects/tests/test_path.py,sha256=JjONWyhZyMM_u1SzD1RI_iZ5vYJDUe-B51fbbHcz
|
|
|
130
133
|
bluer_objects/tests/test_storage.py,sha256=2tJ6Hev9ShId9Qn-0FXDw41HWjcl3wymcB_Bv1FJWi4,1127
|
|
131
134
|
bluer_objects/tests/test_testing.py,sha256=d2NH435yqJBl9wmfMqGGd-f0Y0jsL2QhHUXkty9AwPA,235
|
|
132
135
|
bluer_objects/tests/test_version.py,sha256=Lyf3PMcA22e17BNRk_2VgPrtao6dWEgVoXo68Uds8SE,75
|
|
133
|
-
bluer_objects-6.
|
|
134
|
-
bluer_objects-6.
|
|
135
|
-
bluer_objects-6.
|
|
136
|
-
bluer_objects-6.
|
|
137
|
-
bluer_objects-6.
|
|
136
|
+
bluer_objects-6.36.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
|
137
|
+
bluer_objects-6.36.1.dist-info/METADATA,sha256=iDXZmNtpo_I1YYNvO2wfMOv5FGAtMvmQ4p-jkB7PKI8,2748
|
|
138
|
+
bluer_objects-6.36.1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
139
|
+
bluer_objects-6.36.1.dist-info/top_level.txt,sha256=RX2TpddbnRkurda3G_pAdyeTztP2IhhRPx949GlEvQo,14
|
|
140
|
+
bluer_objects-6.36.1.dist-info/RECORD,,
|
bluer_objects/.abcli/cache.sh
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|