blue-sandbox 5.267.1__py3-none-any.whl → 5.275.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.
@@ -7,6 +7,7 @@ function blue_sandbox_palisades_predict() {
7
7
  local do_dryrun=$(abcli_option_int "$options" dryrun 0)
8
8
  local do_download=$(abcli_option_int "$options" download $(abcli_not $do_dryrun))
9
9
  local do_upload=$(abcli_option_int "$options" upload $(abcli_not $do_dryrun))
10
+ local profile=$(abcli_option "$options" profile VALIDATION)
10
11
 
11
12
  local model_object_name=$(abcli_clarify_object $2 ..)
12
13
  [[ "$do_download" == 1 ]] &&
@@ -16,7 +17,7 @@ function blue_sandbox_palisades_predict() {
16
17
 
17
18
  local prediction_object_name=$(abcli_clarify_object $4 predict-$datacube_id-$(abcli_string_timestamp_short))
18
19
 
19
- abcli_log "semseg[$model_object_name].predict($datacube_id) -$device-> $prediction_object_name."
20
+ abcli_log "semseg[$model_object_name].predict($datacube_id) -$device-@-$profile-> $prediction_object_name."
20
21
 
21
22
  abcli_eval dryrun=$do_dryrun \
22
23
  python3 -m blue_sandbox.palisades predict \
@@ -24,10 +25,14 @@ function blue_sandbox_palisades_predict() {
24
25
  --model_object_name $model_object_name \
25
26
  --datacube_id $datacube_id \
26
27
  --prediction_object_name $prediction_object_name \
27
- --profile $(abcli_option "$options" profile VALIDATION) \
28
+ --profile $profile \
28
29
  "${@:5}"
29
30
  local status="$?"
30
31
 
32
+ abcli_mlflow_tags_set \
33
+ $prediction_object_name \
34
+ datacube_id=$datacube_id,model=$model_object_name,profile=$profile
35
+
31
36
  [[ "$do_upload" == 1 ]] &&
32
37
  abcli_upload - $prediction_object_name
33
38
 
blue_sandbox/__init__.py CHANGED
@@ -4,7 +4,7 @@ ICON = "🌀"
4
4
 
5
5
  DESCRIPTION = f"{ICON} A sandbox for ideas and experiments."
6
6
 
7
- VERSION = "5.267.1"
7
+ VERSION = "5.275.1"
8
8
 
9
9
  REPO_NAME = "blue-sandbox"
10
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: blue_sandbox
3
- Version: 5.267.1
3
+ Version: 5.275.1
4
4
  Summary: 🌀 A sandbox for ideas and experiments.
5
5
  Home-page: https://github.com/kamangir/blue-sandbox
6
6
  Author: Arash Abadpour (Kamangir)
@@ -64,4 +64,4 @@ pip install blue-sandbox
64
64
 
65
65
  [![pylint](https://github.com/kamangir/blue-sandbox/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/blue-sandbox/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/blue-sandbox/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/blue-sandbox/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/blue-sandbox/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/blue-sandbox/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/blue-sandbox.svg)](https://pypi.org/project/blue-sandbox/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/blue-sandbox)](https://pypistats.org/packages/blue-sandbox)
66
66
 
67
- built by 🌀 [`blue_options-4.192.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.267.1`](https://github.com/kamangir/blue-sandbox).
67
+ built by 🌀 [`blue_options-4.192.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.275.1`](https://github.com/kamangir/blue-sandbox).
@@ -1,5 +1,5 @@
1
1
  blue_sandbox/README.py,sha256=wy5C7hkd-_RB9HZAmyt75Uevjpxg6Ok7t9SkET3QKHI,2077
2
- blue_sandbox/__init__.py,sha256=SMpxRl7_5kEtDSXsmHp_8l77Y6Aqdq_sgSFuU1k1o0w,323
2
+ blue_sandbox/__init__.py,sha256=3xR0p8KRYnAdPA4fYZDxzo-1aOO3AvBfYvv_0yPmpxk,323
3
3
  blue_sandbox/__main__.py,sha256=aPRHSpGpk-bDbzhHpfLNsd3y1gGEHpnhoTF-RBweNwc,361
4
4
  blue_sandbox/config.env,sha256=jTPIS1Tpbkj1b28ynqB1atEtkjQfJ04SJC56bLWGnAs,496
5
5
  blue_sandbox/env.py,sha256=gMeUa11uAiiIPPqcXVsELkpxmEbqU0qVoSjwQpH-vw0,747
@@ -28,7 +28,7 @@ blue_sandbox/.abcli/microsoft_building_damage_assessment/train.sh,sha256=XyTTFB2
28
28
  blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest/list.sh,sha256=9bEjpbwO7Heqd-E2RTM-ck4Q39Eqsv4ged6e0WmxmSs,452
29
29
  blue_sandbox/.abcli/palisades/ingest.sh,sha256=o5SeMhCfYLYMIG-VMjA2mFvACzWVaWV6H8p1khoFBvc,1018
30
30
  blue_sandbox/.abcli/palisades/label.sh,sha256=YyYhbtLt8EQKKWyV1ZYQiS6Ke9W0hTOjQdpgoNUj1sc,709
31
- blue_sandbox/.abcli/palisades/predict.sh,sha256=f0XPqQthz_RmWyUhuuuQ04q2WHS6BkVG1dvxcLTB8GQ,1313
31
+ blue_sandbox/.abcli/palisades/predict.sh,sha256=8KLeG6yB9fhPziEYcmXPBMEFHhEqhAqKjiz4X9ai4Ok,1489
32
32
  blue_sandbox/.abcli/palisades/train.sh,sha256=MctMmuvzE-HRYWHzt1TWWDeZYrQGByOhyQxG-mDJhN4,1927
33
33
  blue_sandbox/.abcli/sagesemseg/cache_dataset.sh,sha256=oAXW1AGer6tuLBQrdNqz7VyMIQtubMXDeUg4crkQiqM,1335
34
34
  blue_sandbox/.abcli/sagesemseg/consts.sh,sha256=xKVE1hAzVPqz0SkY_0h7Fpgy1OEQOFsf3sQHfLHgnQ4,95
@@ -57,8 +57,8 @@ blue_sandbox/microsoft_building_damage_assessment/ingest.py,sha256=tBchn4dWPIqAr
57
57
  blue_sandbox/microsoft_building_damage_assessment/label.py,sha256=mpRNOsF8ChxSLwOyvwGmXiD7aO2xfivJPZTC5qwnLaw,823
58
58
  blue_sandbox/microsoft_building_damage_assessment/sas_token.py,sha256=t6oTXc6C52CH3tFbQo2H9YUB_7upAsfUwws43Iu9pHI,214
59
59
  blue_sandbox/microsoft_building_damage_assessment/train.py,sha256=8DUt0S4LuKkRIi9XpASOg5skPaM3D2VaSBg5FEn8qog,2778
60
- blue_sandbox-5.267.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
61
- blue_sandbox-5.267.1.dist-info/METADATA,sha256=KWLuZg99Vmxqol8cUGF0RIZrNlOu_JkzqsanwGJnDXk,3761
62
- blue_sandbox-5.267.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
63
- blue_sandbox-5.267.1.dist-info/top_level.txt,sha256=4D9Cb9QUCaqdYAmBiCwvtlaYBtUYVVxv0Sxcr_pzgS8,13
64
- blue_sandbox-5.267.1.dist-info/RECORD,,
60
+ blue_sandbox-5.275.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
61
+ blue_sandbox-5.275.1.dist-info/METADATA,sha256=wqKBsupFsjLNdP5BTTDauMUwvdyvknDLH_6uokM66r4,3761
62
+ blue_sandbox-5.275.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
63
+ blue_sandbox-5.275.1.dist-info/top_level.txt,sha256=4D9Cb9QUCaqdYAmBiCwvtlaYBtUYVVxv0Sxcr_pzgS8,13
64
+ blue_sandbox-5.275.1.dist-info/RECORD,,