blue-sandbox 5.227.1__py3-none-any.whl → 5.242.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.
- blue_sandbox/.abcli/palisades/ingest.sh +0 -6
- blue_sandbox/.abcli/tests/palisades_ingest.sh +3 -6
- blue_sandbox/.abcli/tests/palisades_train.sh +36 -5
- blue_sandbox/__init__.py +1 -1
- {blue_sandbox-5.227.1.dist-info → blue_sandbox-5.242.1.dist-info}/METADATA +2 -2
- {blue_sandbox-5.227.1.dist-info → blue_sandbox-5.242.1.dist-info}/RECORD +9 -9
- {blue_sandbox-5.227.1.dist-info → blue_sandbox-5.242.1.dist-info}/LICENSE +0 -0
- {blue_sandbox-5.227.1.dist-info → blue_sandbox-5.242.1.dist-info}/WHEEL +0 -0
- {blue_sandbox-5.227.1.dist-info → blue_sandbox-5.242.1.dist-info}/top_level.txt +0 -0
@@ -23,12 +23,6 @@ function blue_sandbox_palisades_ingest() {
|
|
23
23
|
$target_options \
|
24
24
|
$query_object_name
|
25
25
|
[[ $? -ne 0 ]] && return 1
|
26
|
-
|
27
|
-
abcli_eval dryrun=$do_dryrun \
|
28
|
-
python3 -m blue_sandbox.palisades \
|
29
|
-
complete_ingest \
|
30
|
-
--query_object_name $query_object_name
|
31
|
-
[[ $? -ne 0 ]] && return 1
|
32
26
|
fi
|
33
27
|
|
34
28
|
local do_ingest_datacubes=$(abcli_option_int "$datacube_ingest_options" ingest_datacubes 1)
|
@@ -4,8 +4,7 @@ function test_blue_sandbox_palisades_ingest() {
|
|
4
4
|
local options=$1
|
5
5
|
|
6
6
|
abcli_eval ,$options \
|
7
|
-
|
8
|
-
ingest \
|
7
|
+
blue_sandbox_palisades_ingest \
|
9
8
|
~upload \
|
10
9
|
target=Palisades-Maxar-test \
|
11
10
|
~ingest_datacubes
|
@@ -14,8 +13,7 @@ function test_blue_sandbox_palisades_ingest() {
|
|
14
13
|
abcli_hr
|
15
14
|
|
16
15
|
abcli_eval ,$options \
|
17
|
-
|
18
|
-
ingest \
|
16
|
+
blue_sandbox_palisades_ingest \
|
19
17
|
~upload \
|
20
18
|
$PALISADES_QUERY_OBJECT_PALISADES_MAXAR_TEST \
|
21
19
|
~ingest_datacubes
|
@@ -24,8 +22,7 @@ function test_blue_sandbox_palisades_ingest() {
|
|
24
22
|
abcli_hr
|
25
23
|
|
26
24
|
abcli_eval ,$options \
|
27
|
-
|
28
|
-
ingest \
|
25
|
+
blue_sandbox_palisades_ingest \
|
29
26
|
~upload \
|
30
27
|
target=Palisades-Maxar-test \
|
31
28
|
scope=rgb
|
@@ -5,15 +5,46 @@ function test_blue_sandbox_palisades_train() {
|
|
5
5
|
|
6
6
|
local query_object_name=palisades-dataset-v1
|
7
7
|
|
8
|
-
# test is empty; train causes the github worker to crash.
|
8
|
+
# test is empty; the train subset causes the github worker to crash.
|
9
|
+
if [[ "$abcli_is_github_workflow" == false ]]; then
|
10
|
+
abcli_eval ,$options \
|
11
|
+
roofai_dataset_review \
|
12
|
+
download \
|
13
|
+
$query_object_name \
|
14
|
+
--index 0 \
|
15
|
+
--subset test
|
16
|
+
[[ $? -ne 0 ]] && return 1
|
17
|
+
|
18
|
+
abcli_hr
|
19
|
+
fi
|
20
|
+
|
21
|
+
local dataset_object_name=test-${query_object_name}-ingest-$(abcli_string_timestamp_short)
|
22
|
+
|
9
23
|
abcli_eval ,$options \
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
--
|
24
|
+
roofai_dataset_ingest \
|
25
|
+
download,source=$query_object_name \
|
26
|
+
$dataset_object_name \
|
27
|
+
--test_count 1000 \
|
28
|
+
--train_count 8000 \
|
29
|
+
--val_count 1000
|
14
30
|
[[ $? -ne 0 ]] && return 1
|
15
31
|
|
16
32
|
abcli_hr
|
17
33
|
|
34
|
+
local subset
|
35
|
+
for subset in train test val; do
|
36
|
+
abcli_eval ,$options \
|
37
|
+
roofai_dataset_review \
|
38
|
+
- \
|
39
|
+
$dataset_object_name \
|
40
|
+
--index 0 \
|
41
|
+
--subset $subset
|
42
|
+
[[ $? -ne 0 ]] && return 1
|
43
|
+
|
44
|
+
abcli_hr
|
45
|
+
done
|
46
|
+
|
18
47
|
# next step
|
48
|
+
|
49
|
+
return 0
|
19
50
|
}
|
blue_sandbox/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: blue_sandbox
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.242.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
|
[](https://github.com/kamangir/blue-sandbox/actions/workflows/pylint.yml) [](https://github.com/kamangir/blue-sandbox/actions/workflows/pytest.yml) [](https://github.com/kamangir/blue-sandbox/actions/workflows/bashtest.yml) [](https://pypi.org/project/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.
|
67
|
+
built by 🌀 [`blue_options-4.192.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.242.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=
|
2
|
+
blue_sandbox/__init__.py,sha256=rqdHWlsCPcbPJQutkJB4YW3hS6uQFhuB_t-fDu5jQRw,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
|
@@ -26,7 +26,7 @@ blue_sandbox/.abcli/microsoft_building_damage_assessment/label.sh,sha256=RROjENj
|
|
26
26
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/tensorboard.sh,sha256=BHdnOvorV9gjO1ET64tbLOqSGviNFR96S67XHmJz2hs,746
|
27
27
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/train.sh,sha256=XyTTFB2AD7p8XT0x1vvQLwndyscGN23QEDA80wS3cjk,1970
|
28
28
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest/list.sh,sha256=9bEjpbwO7Heqd-E2RTM-ck4Q39Eqsv4ged6e0WmxmSs,452
|
29
|
-
blue_sandbox/.abcli/palisades/ingest.sh,sha256=
|
29
|
+
blue_sandbox/.abcli/palisades/ingest.sh,sha256=o5SeMhCfYLYMIG-VMjA2mFvACzWVaWV6H8p1khoFBvc,1018
|
30
30
|
blue_sandbox/.abcli/palisades/label.sh,sha256=YyYhbtLt8EQKKWyV1ZYQiS6Ke9W0hTOjQdpgoNUj1sc,709
|
31
31
|
blue_sandbox/.abcli/sagesemseg/cache_dataset.sh,sha256=oAXW1AGer6tuLBQrdNqz7VyMIQtubMXDeUg4crkQiqM,1335
|
32
32
|
blue_sandbox/.abcli/sagesemseg/consts.sh,sha256=xKVE1hAzVPqz0SkY_0h7Fpgy1OEQOFsf3sQHfLHgnQ4,95
|
@@ -38,9 +38,9 @@ blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest.sh,sha256=
|
|
38
38
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest_list.sh,sha256=5P0H-FHV7YKt1fenXAs_0cSFhJYWZ9u3LzRpfSRSptw,577
|
39
39
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_label.sh,sha256=Envac5i9eGa5usDCO8MYfGFfyAZAT-f0KrrsAkaR91U,311
|
40
40
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_train.sh,sha256=0FlwyR1drn6wAKX9IHU_ma7WTmH1Iv8DoTNsdsyj3PA,533
|
41
|
-
blue_sandbox/.abcli/tests/palisades_ingest.sh,sha256=
|
41
|
+
blue_sandbox/.abcli/tests/palisades_ingest.sh,sha256=1f7P-ARKXmsDkRg41hp3_RCp8FEeiWQdibG7lmB3YKE,642
|
42
42
|
blue_sandbox/.abcli/tests/palisades_label.sh,sha256=R1lQmsiVj1T2CumNGjFVmXpjJoGbrmH1xbLxj6KBltM,506
|
43
|
-
blue_sandbox/.abcli/tests/palisades_train.sh,sha256=
|
43
|
+
blue_sandbox/.abcli/tests/palisades_train.sh,sha256=hcjO_AcVnyFUFbQvE8ygedHkASz2O8gsMZdLpJaySjw,1183
|
44
44
|
blue_sandbox/.abcli/tests/sagesemseg_train.sh,sha256=Fz2yzxub7x4SgQAr1ctZIbX6YwJR8HHTEgXcou4dORw,799
|
45
45
|
blue_sandbox/.abcli/tests/version.sh,sha256=jF8zoJN1eKE3LfDeRVG9uHEosmEVJX6RtKfdioyeN-o,150
|
46
46
|
blue_sandbox/help/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
@@ -54,8 +54,8 @@ blue_sandbox/microsoft_building_damage_assessment/ingest.py,sha256=tBchn4dWPIqAr
|
|
54
54
|
blue_sandbox/microsoft_building_damage_assessment/label.py,sha256=mpRNOsF8ChxSLwOyvwGmXiD7aO2xfivJPZTC5qwnLaw,823
|
55
55
|
blue_sandbox/microsoft_building_damage_assessment/sas_token.py,sha256=t6oTXc6C52CH3tFbQo2H9YUB_7upAsfUwws43Iu9pHI,214
|
56
56
|
blue_sandbox/microsoft_building_damage_assessment/train.py,sha256=8DUt0S4LuKkRIi9XpASOg5skPaM3D2VaSBg5FEn8qog,2778
|
57
|
-
blue_sandbox-5.
|
58
|
-
blue_sandbox-5.
|
59
|
-
blue_sandbox-5.
|
60
|
-
blue_sandbox-5.
|
61
|
-
blue_sandbox-5.
|
57
|
+
blue_sandbox-5.242.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
58
|
+
blue_sandbox-5.242.1.dist-info/METADATA,sha256=48I29E0BahlPsNvL_4j3-99uqVytPJazMBQ7_qKL4dI,3761
|
59
|
+
blue_sandbox-5.242.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
60
|
+
blue_sandbox-5.242.1.dist-info/top_level.txt,sha256=4D9Cb9QUCaqdYAmBiCwvtlaYBtUYVVxv0Sxcr_pzgS8,13
|
61
|
+
blue_sandbox-5.242.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|