blue-sandbox 5.184.1__py3-none-any.whl → 5.214.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/cemetery/inference/cloudwatch.sh +5 -5
- blue_sandbox/.abcli/cemetery/inference/inference.sh +20 -20
- blue_sandbox/.abcli/palisades/ingest.sh +11 -18
- blue_sandbox/.abcli/palisades/label.sh +25 -0
- blue_sandbox/.abcli/sagesemseg/train.sh +1 -1
- blue_sandbox/.abcli/sagesemseg/upload_dataset.sh +1 -1
- blue_sandbox/.abcli/tests/help.sh +1 -0
- blue_sandbox/.abcli/tests/palisades_ingest.sh +7 -10
- blue_sandbox/.abcli/tests/palisades_label.sh +25 -0
- blue_sandbox/.abcli/tests/palisades_train.sh +16 -0
- blue_sandbox/.abcli/tests/sagesemseg_train.sh +3 -6
- blue_sandbox/__init__.py +1 -1
- blue_sandbox/help/palisades.py +22 -7
- {blue_sandbox-5.184.1.dist-info → blue_sandbox-5.214.1.dist-info}/METADATA +3 -3
- {blue_sandbox-5.184.1.dist-info → blue_sandbox-5.214.1.dist-info}/RECORD +18 -15
- {blue_sandbox-5.184.1.dist-info → blue_sandbox-5.214.1.dist-info}/LICENSE +0 -0
- {blue_sandbox-5.184.1.dist-info → blue_sandbox-5.214.1.dist-info}/WHEEL +0 -0
- {blue_sandbox-5.184.1.dist-info → blue_sandbox-5.214.1.dist-info}/top_level.txt +0 -0
@@ -1,17 +1,17 @@
|
|
1
1
|
#! /usr/bin/env bash
|
2
2
|
|
3
3
|
function cloudwatch() {
|
4
|
-
|
4
|
+
blue_sandbox_cemetery_cloudwatch "$@"
|
5
5
|
}
|
6
6
|
|
7
|
-
function
|
7
|
+
function blue_sandbox_cemetery_cloudwatch() {
|
8
8
|
local task=${1:=help}
|
9
9
|
|
10
10
|
if [ "$task" == "help" ]; then
|
11
11
|
local options="endpoint"
|
12
12
|
abcli_show_usage "cloudwatch browse$EOP$ABCUL[$options]$ABCUL[<endpoint-name>]$EOPE" \
|
13
13
|
"browse endpoint on cloudwatch." \
|
14
|
-
"default endpoint: $(
|
14
|
+
"default endpoint: $(blue_sandbox_cemetery_inference_default_endpoint)"
|
15
15
|
return
|
16
16
|
fi
|
17
17
|
|
@@ -23,7 +23,7 @@ function roofAI_cloudwatch() {
|
|
23
23
|
|
24
24
|
local url=""
|
25
25
|
if [[ "$object_type" == endpoint ]]; then
|
26
|
-
local endpoint_name=$(abcli_clarify_input $3 $(
|
26
|
+
local endpoint_name=$(abcli_clarify_input $3 $(blue_sandbox_cemetery_inference_default_endpoint))
|
27
27
|
abcli_log "🔗 endpoint: $endpoint_name"
|
28
28
|
url="https://$ABCLI_AWS_REGION.console.aws.amazon.com/cloudwatch/home?region=$ABCLI_AWS_REGION#logEventViewer:group=/aws/sagemaker/Endpoints/$endpoint_name"
|
29
29
|
else
|
@@ -35,6 +35,6 @@ function roofAI_cloudwatch() {
|
|
35
35
|
return
|
36
36
|
fi
|
37
37
|
|
38
|
-
abcli_log_error "
|
38
|
+
abcli_log_error "blue_sandbox: cemetery: cloudwatch: $task: command not found."
|
39
39
|
return 1
|
40
40
|
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
#! /usr/bin/env bash
|
2
2
|
|
3
|
-
function
|
3
|
+
function blue_sandbox_cemetery_inference() {
|
4
4
|
local task=$(abcli_unpack_keyword $1 help)
|
5
5
|
|
6
6
|
if [ "$task" == "help" ]; then
|
7
7
|
for task in create delete describe invoke list pull; do
|
8
|
-
|
8
|
+
blue_sandbox_cemetery_inference "$task" "$@"
|
9
9
|
done
|
10
10
|
return
|
11
11
|
fi
|
@@ -16,45 +16,45 @@ function roofAI_inference() {
|
|
16
16
|
"create")
|
17
17
|
local args="[--verbose 1]$ABCUL[--verify 0]"
|
18
18
|
local options="dryrun,model"
|
19
|
-
abcli_show_usage "
|
19
|
+
abcli_show_usage "@cemetery inference create$ABCUL[$options]$ABCUL[.|<object-name>]$ABCUL$args" \
|
20
20
|
"create inference model."
|
21
21
|
|
22
22
|
local options="dryrun,endpoint_config,suffix=<suffix>"
|
23
|
-
abcli_show_usage "
|
23
|
+
abcli_show_usage "@cemetery inference create$ABCUL[$options]$ABCUL[.|<object-name>]$ABCUL$args" \
|
24
24
|
"create inference endpoint config."
|
25
25
|
|
26
26
|
local options="dryrun,endpoint,config_suffix=<suffix>,suffix=<suffix>"
|
27
|
-
abcli_show_usage "
|
27
|
+
abcli_show_usage "@cemetery inference create$ABCUL[$options]$ABCUL[.|<object-name>]$ABCUL$args" \
|
28
28
|
"create inference endpoint."
|
29
29
|
;;
|
30
30
|
"delete")
|
31
31
|
local args="[--verbose 1]"
|
32
32
|
local options="dryrun,model|endpoint_config|endpoint"
|
33
|
-
abcli_show_usage "
|
33
|
+
abcli_show_usage "@cemetery inference delete$ABCUL[$options]$ABCUL<name>$ABCUL$args" \
|
34
34
|
"delete inference object."
|
35
35
|
;;
|
36
36
|
"describe")
|
37
37
|
local args="[--verbose 1]"
|
38
38
|
local options="dryrun,endpoint"
|
39
|
-
abcli_show_usage "
|
39
|
+
abcli_show_usage "@cemetery inference describe$ABCUL[$options]$ABCUL<name>$ABCUL$args" \
|
40
40
|
"describe inference endpoint."
|
41
41
|
;;
|
42
42
|
"invoke")
|
43
43
|
local args="[--verbose 1]"
|
44
44
|
local options="~download,dryrun,profile=$semseg_profiles,upload"
|
45
|
-
abcli_show_usage "
|
45
|
+
abcli_show_usage "@cemetery inference invoke$EOP$ABCUL[$options]$ABCUL[-|<endpoint-name>]$ABCUL[..|<dataset-object-name>]$ABCUL[-|<prediction-object-name>]$ABCUL$args$EOPE" \
|
46
46
|
"<dataset-object-name> -> inference endpoint -> <prediction-object-name>." \
|
47
|
-
"default endpoint: $(
|
47
|
+
"default endpoint: $(blue_sandbox_cemetery_inference_default_endpoint)"
|
48
48
|
;;
|
49
49
|
"list")
|
50
50
|
local args="[--verbose 1]"
|
51
51
|
local options="dryrun,model|endpoint_config|endpoint,contains=<string>"
|
52
|
-
abcli_show_usage "
|
52
|
+
abcli_show_usage "@cemetery inference list$ABCUL[$options]$ABCUL$args" \
|
53
53
|
"list inference objects."
|
54
54
|
;;
|
55
55
|
"pull")
|
56
56
|
local options="dryrun"
|
57
|
-
abcli_show_usage "
|
57
|
+
abcli_show_usage "@cemetery inference pull$ABCUL[$options]" \
|
58
58
|
"pull the inference image."
|
59
59
|
;;
|
60
60
|
esac
|
@@ -73,7 +73,7 @@ function roofAI_inference() {
|
|
73
73
|
abcli_upload solid,~warn_if_exists $object_name
|
74
74
|
|
75
75
|
abcli_eval dryrun=$do_dryrun \
|
76
|
-
python3 -m
|
76
|
+
python3 -m blue_sandbox.cemetry.inference create \
|
77
77
|
--suffix $(abcli_option "$options" suffix -) \
|
78
78
|
--config_suffix $(abcli_option "$options" config_suffix -) \
|
79
79
|
--object_type "$object_type" \
|
@@ -84,7 +84,7 @@ function roofAI_inference() {
|
|
84
84
|
|
85
85
|
if [[ ",delete,describe," == *",$task,"* ]]; then
|
86
86
|
abcli_eval dryrun=$do_dryrun \
|
87
|
-
python3 -m
|
87
|
+
python3 -m blue_sandbox.cemetry.inference $task \
|
88
88
|
--object_type "$object_type" \
|
89
89
|
--object_name "$3" \
|
90
90
|
"${@:4}"
|
@@ -96,7 +96,7 @@ function roofAI_inference() {
|
|
96
96
|
local do_download=$(abcli_option_int "$options" download $(abcli_not $do_dryrun))
|
97
97
|
local do_upload=$(abcli_option_int "$options" upload $(abcli_not $do_dryrun))
|
98
98
|
|
99
|
-
local endpoint_name=$(abcli_clarify_input $3 $(
|
99
|
+
local endpoint_name=$(abcli_clarify_input $3 $(blue_sandbox_cemetery_inference_default_endpoint))
|
100
100
|
|
101
101
|
local dataset_object_name=$(abcli_clarify_object $4 ..)
|
102
102
|
[[ "$do_download" == 1 ]] &&
|
@@ -107,7 +107,7 @@ function roofAI_inference() {
|
|
107
107
|
abcli_log "endpoint[$endpoint_name].invoke($dataset_object_name) -> $prediction_object_name."
|
108
108
|
|
109
109
|
abcli_eval dryrun=$do_dryrun \
|
110
|
-
python3 -m
|
110
|
+
python3 -m blue_sandbox.cemetry.inference $task \
|
111
111
|
--endpoint_name $endpoint_name \
|
112
112
|
--dataset_path $ABCLI_OBJECT_ROOT/$dataset_object_name \
|
113
113
|
--prediction_path $ABCLI_OBJECT_ROOT/$prediction_object_name \
|
@@ -122,7 +122,7 @@ function roofAI_inference() {
|
|
122
122
|
|
123
123
|
if [[ "$task" == "list" ]]; then
|
124
124
|
abcli_eval dryrun=$do_dryrun \
|
125
|
-
python3 -m
|
125
|
+
python3 -m blue_sandbox.cemetry.inference $task \
|
126
126
|
--object_type "$object_type" \
|
127
127
|
--object_name $(abcli_option "$options" contains -) \
|
128
128
|
"${@:3}"
|
@@ -138,7 +138,7 @@ function roofAI_inference() {
|
|
138
138
|
763104351884.dkr.ecr.$ABCLI_AWS_REGION.amazonaws.com
|
139
139
|
[[ $? -ne 0 ]] && return 1
|
140
140
|
|
141
|
-
local image_name=$(python3 -m
|
141
|
+
local image_name=$(python3 -m blue_sandbox.cemetry.inference.image get --what name)
|
142
142
|
abcli_log "🔗 image name: $image_name"
|
143
143
|
abcli_eval dryrun=$do_dryrun \
|
144
144
|
docker pull $image_name
|
@@ -146,10 +146,10 @@ function roofAI_inference() {
|
|
146
146
|
return
|
147
147
|
fi
|
148
148
|
|
149
|
-
abcli_log_error "
|
149
|
+
abcli_log_error "@cemetery: inference: $task: command not found."
|
150
150
|
return 1
|
151
151
|
}
|
152
152
|
|
153
|
-
function
|
154
|
-
echo endpoint-$(abcli_cache read
|
153
|
+
function blue_sandbox_cemetery_inference_default_endpoint() {
|
154
|
+
echo endpoint-$(abcli_cache read blue_sandbox_cemetery_semseg_model_AIRS_o2)-pytorch
|
155
155
|
}
|
@@ -9,7 +9,6 @@ function blue_sandbox_palisades_ingest() {
|
|
9
9
|
|
10
10
|
local do_dryrun=$(abcli_option_int "$options" dryrun 0)
|
11
11
|
local do_download=$(abcli_option_int "$options" download $(abcli_not $do_dryrun))
|
12
|
-
local do_upload=$(abcli_option_int "$options" upload 0)
|
13
12
|
|
14
13
|
local target=$(abcli_option "$target_options" target)
|
15
14
|
local query_object_name
|
@@ -24,24 +23,18 @@ function blue_sandbox_palisades_ingest() {
|
|
24
23
|
$target_options \
|
25
24
|
$query_object_name
|
26
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
|
27
32
|
fi
|
28
33
|
|
29
|
-
local list_of_datacubes=$(blue_geo_catalog_query_read all \
|
30
|
-
$query_object_name \
|
31
|
-
--log 0 \
|
32
|
-
--delim +)
|
33
|
-
@log_list "$list_of_datacubes" \
|
34
|
-
--before ingesting \
|
35
|
-
--after "datacube(s)" \
|
36
|
-
--delim +
|
37
|
-
|
38
|
-
local datacube_id
|
39
34
|
local do_ingest_datacubes=$(abcli_option_int "$datacube_ingest_options" ingest_datacubes 1)
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
done
|
46
|
-
fi
|
35
|
+
[[ "$do_ingest_datacubes" == 0 ]] && return 0
|
36
|
+
|
37
|
+
blue_geo_catalog_query_ingest - \
|
38
|
+
$query_object_name \
|
39
|
+
,$datacube_ingest_options
|
47
40
|
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function blue_sandbox_palisades_label() {
|
4
|
+
local options=$1
|
5
|
+
local do_download=$(abcli_option_int "$options" download 0)
|
6
|
+
local offset=$(abcli_option "$option" offset 0)
|
7
|
+
|
8
|
+
local datacube_label_options=$2
|
9
|
+
|
10
|
+
local query_object_name=$(abcli_clarify_object $3 .)
|
11
|
+
[[ "$do_download" == 1 ]] &&
|
12
|
+
abcli_download - $query_object_name
|
13
|
+
|
14
|
+
local datacube_id=$(blue_geo_catalog_query_read - \
|
15
|
+
$query_object_name \
|
16
|
+
--offset $offset)
|
17
|
+
if [[ -z "$datacube_id" ]]; then
|
18
|
+
abcli_log_error "datacube $query_object_name/#$offset not found."
|
19
|
+
return 1
|
20
|
+
fi
|
21
|
+
|
22
|
+
blue_geo_datacube_label \
|
23
|
+
,$datacube_label_options \
|
24
|
+
$datacube_id
|
25
|
+
}
|
@@ -36,7 +36,7 @@ function runme() {
|
|
36
36
|
trained_on.$dataset_object_name
|
37
37
|
|
38
38
|
abcli_eval dryrun=$do_dryrun \
|
39
|
-
python3 -m
|
39
|
+
python3 -m blue_sandbox.cemetry.sagesemseg train_model \
|
40
40
|
--dataset_object_name $dataset_object_name \
|
41
41
|
--model_object_name $model_object_name \
|
42
42
|
"${@:4}"
|
@@ -38,7 +38,7 @@ function runme() {
|
|
38
38
|
abcli_log "$script_name: $dataset_object_name -> ☁️ / $object_name"
|
39
39
|
|
40
40
|
abcli_eval dryrun=$do_dryrun \
|
41
|
-
python3 -m
|
41
|
+
python3 -m blue_sandbox.cemetry.sagesemseg upload_dataset \
|
42
42
|
--dataset_object_name $dataset_object_name \
|
43
43
|
--object_name $object_name \
|
44
44
|
"${@:3}"
|
@@ -1,30 +1,27 @@
|
|
1
1
|
#! /usr/bin/env bash
|
2
2
|
|
3
|
-
function
|
3
|
+
function test_blue_sandbox_palisades_ingest() {
|
4
4
|
local options=$1
|
5
5
|
|
6
6
|
abcli_eval ,$options \
|
7
7
|
blue_sandbox_palisades \
|
8
8
|
ingest \
|
9
9
|
~upload \
|
10
|
-
target=Palisades-Maxar \
|
10
|
+
target=Palisades-Maxar-test \
|
11
11
|
~ingest_datacubes
|
12
|
+
[[ $? -ne 0 ]] && return 1
|
12
13
|
|
13
|
-
|
14
|
-
|
15
|
-
function test_blue_sandbox_palisades_ingest_query() {
|
16
|
-
local options=$1
|
14
|
+
abcli_hr
|
17
15
|
|
18
16
|
abcli_eval ,$options \
|
19
17
|
blue_sandbox_palisades \
|
20
18
|
ingest \
|
21
19
|
~upload \
|
22
|
-
$
|
20
|
+
$PALISADES_QUERY_OBJECT_PALISADES_MAXAR_TEST \
|
23
21
|
~ingest_datacubes
|
24
|
-
|
22
|
+
[[ $? -ne 0 ]] && return 1
|
25
23
|
|
26
|
-
|
27
|
-
local options=$1
|
24
|
+
abcli_hr
|
28
25
|
|
29
26
|
abcli_eval ,$options \
|
30
27
|
blue_sandbox_palisades \
|
@@ -0,0 +1,25 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function test_blue_sandbox_palisades_label() {
|
4
|
+
local options=$1
|
5
|
+
|
6
|
+
local query_object_name=palisades-dataset-v1
|
7
|
+
|
8
|
+
abcli_eval ,$options \
|
9
|
+
blue_sandbox_palisades_label \
|
10
|
+
download,offset=0 \
|
11
|
+
~QGIS \
|
12
|
+
$query_object_name
|
13
|
+
[[ $? -ne 0 ]] && return 1
|
14
|
+
|
15
|
+
abcli_log_warning "image size may cause gitlab error, disabled."
|
16
|
+
return 0
|
17
|
+
|
18
|
+
# TODO: enable with a dataset with smaller images.
|
19
|
+
|
20
|
+
abcli_eval ,$options \
|
21
|
+
roofai_dataset_review - \
|
22
|
+
$query_object_name \
|
23
|
+
--index 0 \
|
24
|
+
--subset train
|
25
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function test_blue_sandbox_palisades_train() {
|
4
|
+
local options=$1
|
5
|
+
|
6
|
+
local query_object_name=palisades-dataset-v1
|
7
|
+
|
8
|
+
abcli_eval ,$options \
|
9
|
+
roofai_dataset_review download \
|
10
|
+
$query_object_name
|
11
|
+
[[ $? -ne 0 ]] && return 1
|
12
|
+
|
13
|
+
abcli_hr
|
14
|
+
|
15
|
+
# next step
|
16
|
+
}
|
@@ -1,19 +1,16 @@
|
|
1
1
|
#! /usr/bin/env bash
|
2
2
|
|
3
|
-
function
|
3
|
+
function test_blue_sandbox_cemetery_sagesemseg_train() {
|
4
4
|
local options=$1
|
5
5
|
local do_dryrun=$(abcli_option_int "$options" dryrun 0)
|
6
6
|
|
7
7
|
abcli_log_warning "🚧 may incur cost 💰, disabled."
|
8
8
|
do_dryrun=1
|
9
9
|
|
10
|
-
abcli_eval dryrun=$do_dryrun \
|
11
|
-
conda activate $(roofAI_conda environment_name sagemaker)
|
12
|
-
|
13
10
|
local dataset_object_name=dataset-$(abcli_string_timestamp)
|
14
11
|
|
15
12
|
abcli_eval dryrun=$do_dryrun \
|
16
|
-
|
13
|
+
roofai_dataset_ingest \
|
17
14
|
source=AIRS,target=sagemaker,$2 \
|
18
15
|
$dataset_object_name \
|
19
16
|
--test_count 0 \
|
@@ -23,7 +20,7 @@ function test_roofAI_sagemaker_train() {
|
|
23
20
|
local model_object_name=model-$(abcli_string_timestamp)
|
24
21
|
|
25
22
|
abcli_eval dryrun=$do_dryrun \
|
26
|
-
|
23
|
+
blue_sandbox_cemetery_sagesemseg_train \
|
27
24
|
,$3 \
|
28
25
|
$dataset_object_name \
|
29
26
|
$model_object_name \
|
blue_sandbox/__init__.py
CHANGED
blue_sandbox/help/palisades.py
CHANGED
@@ -5,7 +5,7 @@ from blue_options.terminal import show_usage, xtra
|
|
5
5
|
from blue_geo.watch.targets.target_list import TargetList
|
6
6
|
from blue_geo.help.datacube import scope_details
|
7
7
|
from blue_geo.help.datacube import ingest_options as datacube_ingest_options
|
8
|
-
|
8
|
+
from blue_geo.help.datacube.label import options as datacube_label_options
|
9
9
|
|
10
10
|
target_list = TargetList(catalog="maxar_open_data")
|
11
11
|
|
@@ -14,12 +14,7 @@ def help_ingest(
|
|
14
14
|
tokens: List[str],
|
15
15
|
mono: bool,
|
16
16
|
) -> str:
|
17
|
-
options = ""
|
18
|
-
[
|
19
|
-
xtra("~download,dryrun,", mono=mono),
|
20
|
-
"upload",
|
21
|
-
]
|
22
|
-
)
|
17
|
+
options = xtra("~download,dryrun", mono=mono)
|
23
18
|
|
24
19
|
target_options = "".join(
|
25
20
|
[
|
@@ -52,6 +47,26 @@ def help_ingest(
|
|
52
47
|
)
|
53
48
|
|
54
49
|
|
50
|
+
def help_label(
|
51
|
+
tokens: List[str],
|
52
|
+
mono: bool,
|
53
|
+
) -> str:
|
54
|
+
options = "download,offset=<offset>"
|
55
|
+
|
56
|
+
return show_usage(
|
57
|
+
[
|
58
|
+
"palisades",
|
59
|
+
"label",
|
60
|
+
f"[{options}]",
|
61
|
+
f"[{datacube_label_options(mono=mono)}]",
|
62
|
+
"[.|<query-object-name>]",
|
63
|
+
],
|
64
|
+
"label <query-object-name>.",
|
65
|
+
mono=mono,
|
66
|
+
)
|
67
|
+
|
68
|
+
|
55
69
|
help_functions = {
|
56
70
|
"ingest": help_ingest,
|
71
|
+
"label": help_label,
|
57
72
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: blue_sandbox
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.214.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)
|
@@ -19,7 +19,7 @@ Requires-Dist: blue_objects
|
|
19
19
|
Requires-Dist: blue_geo
|
20
20
|
Requires-Dist: blueflow
|
21
21
|
Requires-Dist: blue_plugin
|
22
|
-
Requires-Dist:
|
22
|
+
Requires-Dist: roofai
|
23
23
|
Requires-Dist: boto3
|
24
24
|
Requires-Dist: geojson
|
25
25
|
Requires-Dist: geopandas
|
@@ -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.
|
67
|
+
built by 🌀 [`blue_options-4.192.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.214.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=6yWdyCk-X4OObrXfSzp90w2bSAag-yQavBW2u2KTS6I,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
|
@@ -18,32 +18,35 @@ blue_sandbox/.abcli/browse.sh,sha256=f8qa4qDVts2Am6_ldDwNeJXzhBQTk9PUKl0-a9wW1ww
|
|
18
18
|
blue_sandbox/.abcli/install.sh,sha256=zvl0GsHBmfw62ORmkMlhug264N_Zr8nc3rlPGFoq7Mk,125
|
19
19
|
blue_sandbox/.abcli/microsoft_building_damage_assessment.sh,sha256=wIP7BvltFj3Gx5VmSgT6hY67K1BnubELef93HHwKOU0,470
|
20
20
|
blue_sandbox/.abcli/palisades.sh,sha256=59I4NI8ZULf9zk3yZKsIILqCSbnwFHvpBufV-ORQFio,362
|
21
|
-
blue_sandbox/.abcli/cemetery/inference/cloudwatch.sh,sha256=
|
22
|
-
blue_sandbox/.abcli/cemetery/inference/inference.sh,sha256=
|
21
|
+
blue_sandbox/.abcli/cemetery/inference/cloudwatch.sh,sha256=aUkJaPHSseTiRq2npdmCNlnDCgr33UdGcTiXQD1rLf4,1382
|
22
|
+
blue_sandbox/.abcli/cemetery/inference/inference.sh,sha256=NIdBmO4PIBzVapEQ4k4uK8WOBM7_lPpt9ghdueD-vAo,6107
|
23
23
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest.sh,sha256=w_EUK_i4iSBpSy22TeexfF9jEAqzNwZuvjhpRraGKhA,2662
|
24
24
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/install.sh,sha256=M7MhMfGK0lKGG5CxegrhRgT7eL0Gzix6dY-8w6P0V8g,1509
|
25
25
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/label.sh,sha256=RROjENj93FhCBOkbe8K05e1fR5QNny0syobkX14rwho,795
|
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=PhoapD0a0_D3aO_1N1YE4LV7clE6IheUlckF_Ls3_YE,1222
|
30
|
+
blue_sandbox/.abcli/palisades/label.sh,sha256=YyYhbtLt8EQKKWyV1ZYQiS6Ke9W0hTOjQdpgoNUj1sc,709
|
30
31
|
blue_sandbox/.abcli/sagesemseg/cache_dataset.sh,sha256=oAXW1AGer6tuLBQrdNqz7VyMIQtubMXDeUg4crkQiqM,1335
|
31
32
|
blue_sandbox/.abcli/sagesemseg/consts.sh,sha256=xKVE1hAzVPqz0SkY_0h7Fpgy1OEQOFsf3sQHfLHgnQ4,95
|
32
|
-
blue_sandbox/.abcli/sagesemseg/train.sh,sha256=
|
33
|
-
blue_sandbox/.abcli/sagesemseg/upload_dataset.sh,sha256=
|
33
|
+
blue_sandbox/.abcli/sagesemseg/train.sh,sha256=4y7YjlB2k9FW6SbE2c4JRJ9L0qxI3yQcCaZWJvmNUxQ,1606
|
34
|
+
blue_sandbox/.abcli/sagesemseg/upload_dataset.sh,sha256=VZs7VKglLPpizVMjPcfMcL5TRJ7BRFPAOz8_nok2608,1542
|
34
35
|
blue_sandbox/.abcli/tests/README.sh,sha256=rmJM-BPnTcmpPbJ5GXsF8vd_a84JKryeKkZyVScUing,145
|
35
|
-
blue_sandbox/.abcli/tests/help.sh,sha256=
|
36
|
+
blue_sandbox/.abcli/tests/help.sh,sha256=1eHLBnrsqFLuFefH5W4_MHMRB0IMUrGz-j5NLCF_Dgo,612
|
36
37
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest.sh,sha256=oUUF8Kuyohxiqxo9FLY9EO0qlgkagntgfuFda6niHeM,426
|
37
38
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest_list.sh,sha256=5P0H-FHV7YKt1fenXAs_0cSFhJYWZ9u3LzRpfSRSptw,577
|
38
39
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_label.sh,sha256=Envac5i9eGa5usDCO8MYfGFfyAZAT-f0KrrsAkaR91U,311
|
39
40
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_train.sh,sha256=0FlwyR1drn6wAKX9IHU_ma7WTmH1Iv8DoTNsdsyj3PA,533
|
40
|
-
blue_sandbox/.abcli/tests/palisades_ingest.sh,sha256=
|
41
|
-
blue_sandbox/.abcli/tests/
|
41
|
+
blue_sandbox/.abcli/tests/palisades_ingest.sh,sha256=bAWaBVh3Ay3vk1A8A9APsBGjug7u0ULqWkn4XtCMSZo,672
|
42
|
+
blue_sandbox/.abcli/tests/palisades_label.sh,sha256=cbjMmvpS56JUd4kPpVokgUAzGdKfURLtOgOW77j0PNk,584
|
43
|
+
blue_sandbox/.abcli/tests/palisades_train.sh,sha256=xWX1GSqHQGMaehUq0aJPmkOwCp8Q4wN1srWYiZ5cI8k,300
|
44
|
+
blue_sandbox/.abcli/tests/sagesemseg_train.sh,sha256=Fz2yzxub7x4SgQAr1ctZIbX6YwJR8HHTEgXcou4dORw,799
|
42
45
|
blue_sandbox/.abcli/tests/version.sh,sha256=jF8zoJN1eKE3LfDeRVG9uHEosmEVJX6RtKfdioyeN-o,150
|
43
46
|
blue_sandbox/help/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
44
47
|
blue_sandbox/help/__main__.py,sha256=3Cqp5oISrZCOUApmwoQoCj_0sQgtkiEkm_ob3LFKzRE,234
|
45
48
|
blue_sandbox/help/functions.py,sha256=-AOhYAowmqulhAjrr5B6-AwIDuhZoS0I45flDbt_XRA,541
|
46
|
-
blue_sandbox/help/palisades.py,sha256=
|
49
|
+
blue_sandbox/help/palisades.py,sha256=m9izE1-s3ahgcOQ-iR00IQRllDws4G9wB2WXEzxu39U,1627
|
47
50
|
blue_sandbox/microsoft_building_damage_assessment/README.py,sha256=qqe1wXoc4TjKS4o3gskwNCBuX8PTVduQEAaVHeovsrE,1275
|
48
51
|
blue_sandbox/microsoft_building_damage_assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
52
|
blue_sandbox/microsoft_building_damage_assessment/__main__.py,sha256=RnyXyJdLmzLzccVmb6VZvD17Dwx-g1wByDugIisoPmQ,1995
|
@@ -51,8 +54,8 @@ blue_sandbox/microsoft_building_damage_assessment/ingest.py,sha256=tBchn4dWPIqAr
|
|
51
54
|
blue_sandbox/microsoft_building_damage_assessment/label.py,sha256=mpRNOsF8ChxSLwOyvwGmXiD7aO2xfivJPZTC5qwnLaw,823
|
52
55
|
blue_sandbox/microsoft_building_damage_assessment/sas_token.py,sha256=t6oTXc6C52CH3tFbQo2H9YUB_7upAsfUwws43Iu9pHI,214
|
53
56
|
blue_sandbox/microsoft_building_damage_assessment/train.py,sha256=8DUt0S4LuKkRIi9XpASOg5skPaM3D2VaSBg5FEn8qog,2778
|
54
|
-
blue_sandbox-5.
|
55
|
-
blue_sandbox-5.
|
56
|
-
blue_sandbox-5.
|
57
|
-
blue_sandbox-5.
|
58
|
-
blue_sandbox-5.
|
57
|
+
blue_sandbox-5.214.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
58
|
+
blue_sandbox-5.214.1.dist-info/METADATA,sha256=3OwQ1L88ILsgrJL6Lp3go9LgbxubWIbQKVvgbuuSfek,3761
|
59
|
+
blue_sandbox-5.214.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
60
|
+
blue_sandbox-5.214.1.dist-info/top_level.txt,sha256=4D9Cb9QUCaqdYAmBiCwvtlaYBtUYVVxv0Sxcr_pzgS8,13
|
61
|
+
blue_sandbox-5.214.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|