blue-sandbox 5.148.1__py3-none-any.whl → 5.184.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/alias.sh +2 -0
- blue_sandbox/.abcli/palisades/ingest.sh +47 -0
- blue_sandbox/.abcli/palisades.sh +15 -0
- blue_sandbox/.abcli/tests/help.sh +3 -0
- blue_sandbox/.abcli/tests/palisades_ingest.sh +35 -0
- blue_sandbox/README.py +41 -31
- blue_sandbox/__init__.py +1 -1
- blue_sandbox/config.env +4 -1
- blue_sandbox/env.py +10 -0
- blue_sandbox/help/functions.py +2 -0
- blue_sandbox/help/palisades.py +57 -0
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.184.1.dist-info}/METADATA +2 -2
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.184.1.dist-info}/RECORD +16 -12
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.184.1.dist-info}/LICENSE +0 -0
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.184.1.dist-info}/WHEEL +0 -0
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.184.1.dist-info}/top_level.txt +0 -0
blue_sandbox/.abcli/alias.sh
CHANGED
@@ -0,0 +1,47 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function blue_sandbox_palisades_ingest() {
|
4
|
+
local options=$1
|
5
|
+
local target_options=$2
|
6
|
+
local datacube_ingest_options=$3
|
7
|
+
|
8
|
+
blue_geo_watch_targets_download
|
9
|
+
|
10
|
+
local do_dryrun=$(abcli_option_int "$options" dryrun 0)
|
11
|
+
local do_download=$(abcli_option_int "$options" download $(abcli_not $do_dryrun))
|
12
|
+
local do_upload=$(abcli_option_int "$options" upload 0)
|
13
|
+
|
14
|
+
local target=$(abcli_option "$target_options" target)
|
15
|
+
local query_object_name
|
16
|
+
if [[ -z "$target" ]]; then
|
17
|
+
query_object_name=$target_options
|
18
|
+
|
19
|
+
abcli_download - $query_object_name
|
20
|
+
else
|
21
|
+
query_object_name=palisades-$target-query-$(abcli_string_timestamp_short)
|
22
|
+
|
23
|
+
blue_geo_watch_query \
|
24
|
+
$target_options \
|
25
|
+
$query_object_name
|
26
|
+
[[ $? -ne 0 ]] && return 1
|
27
|
+
fi
|
28
|
+
|
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
|
+
local do_ingest_datacubes=$(abcli_option_int "$datacube_ingest_options" ingest_datacubes 1)
|
40
|
+
if [[ "$do_ingest_datacubes" == 1 ]]; then
|
41
|
+
for datacube_id in $(echo $list_of_datacubes | tr + " "); do
|
42
|
+
blue_geo_datacube_ingest \
|
43
|
+
,$datacube_ingest_options \
|
44
|
+
$datacube_id
|
45
|
+
done
|
46
|
+
fi
|
47
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function blue_sandbox_palisades() {
|
4
|
+
local task=$(abcli_unpack_keyword $1 help)
|
5
|
+
|
6
|
+
local function_name=blue_sandbox_palisades_$task
|
7
|
+
if [[ $(type -t $function_name) == "function" ]]; then
|
8
|
+
$function_name "${@:2}"
|
9
|
+
return
|
10
|
+
fi
|
11
|
+
|
12
|
+
python3 -m blue_sandbox.palisades "$@"
|
13
|
+
}
|
14
|
+
|
15
|
+
abcli_source_caller_suffix_path /palisades
|
@@ -0,0 +1,35 @@
|
|
1
|
+
#! /usr/bin/env bash
|
2
|
+
|
3
|
+
function test_blue_sandbox_palisades_ingest_target() {
|
4
|
+
local options=$1
|
5
|
+
|
6
|
+
abcli_eval ,$options \
|
7
|
+
blue_sandbox_palisades \
|
8
|
+
ingest \
|
9
|
+
~upload \
|
10
|
+
target=Palisades-Maxar \
|
11
|
+
~ingest_datacubes
|
12
|
+
|
13
|
+
}
|
14
|
+
|
15
|
+
function test_blue_sandbox_palisades_ingest_query() {
|
16
|
+
local options=$1
|
17
|
+
|
18
|
+
abcli_eval ,$options \
|
19
|
+
blue_sandbox_palisades \
|
20
|
+
ingest \
|
21
|
+
~upload \
|
22
|
+
$PALISADES_QUERY_OBJECT_PALISADES_MAXAR \
|
23
|
+
~ingest_datacubes
|
24
|
+
}
|
25
|
+
|
26
|
+
function test_blue_sandbox_palisades_ingest_target_ingest_datacubes() {
|
27
|
+
local options=$1
|
28
|
+
|
29
|
+
abcli_eval ,$options \
|
30
|
+
blue_sandbox_palisades \
|
31
|
+
ingest \
|
32
|
+
~upload \
|
33
|
+
target=Palisades-Maxar-test \
|
34
|
+
scope=rgb
|
35
|
+
}
|
blue_sandbox/README.py
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
import os
|
2
2
|
|
3
3
|
from blue_objects import file, README
|
4
|
+
from blue_options.help.functions import get_help
|
4
5
|
|
5
6
|
from blue_sandbox import NAME, VERSION, ICON, REPO_NAME
|
6
7
|
from blue_sandbox.microsoft_building_damage_assessment import (
|
7
8
|
README as microsoft_building_damage_assessment_README,
|
8
9
|
)
|
10
|
+
from blue_sandbox.help.palisades import help_functions as help_palisades
|
9
11
|
from blue_sandbox.list import list_of_experiments
|
10
12
|
|
11
13
|
items = [
|
@@ -25,35 +27,43 @@ items = [
|
|
25
27
|
|
26
28
|
def build():
|
27
29
|
return all(
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
30
|
+
README.build(
|
31
|
+
items=thing.get("items", []),
|
32
|
+
cols=thing.get("cols", 3),
|
33
|
+
path=os.path.join(file.path(__file__), thing["path"]),
|
34
|
+
help_function=thing.get("help_function", None),
|
35
|
+
ICON=ICON,
|
36
|
+
NAME=NAME,
|
37
|
+
VERSION=VERSION,
|
38
|
+
REPO_NAME=REPO_NAME,
|
39
|
+
)
|
40
|
+
for thing in (
|
41
|
+
[
|
42
|
+
{
|
43
|
+
"items": items,
|
44
|
+
"path": "..",
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"items": microsoft_building_damage_assessment_README.items,
|
48
|
+
"cols": len(
|
49
|
+
microsoft_building_damage_assessment_README.list_of_steps
|
50
|
+
),
|
51
|
+
"path": "microsoft_building_damage_assessment",
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"path": "cemetery",
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"path": "palisades",
|
58
|
+
"help_function": lambda tokens: get_help(
|
59
|
+
tokens,
|
60
|
+
help_palisades,
|
61
|
+
mono=True,
|
62
|
+
),
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"path": "sagesemseg",
|
66
|
+
},
|
67
|
+
]
|
68
|
+
)
|
59
69
|
)
|
blue_sandbox/__init__.py
CHANGED
blue_sandbox/config.env
CHANGED
@@ -2,4 +2,7 @@ DAMAGES_TEST_DATASET_OBJECT_NAME=Maui-Hawaii-fires-Aug-23-ingest-2025-01-10-qqJq
|
|
2
2
|
|
3
3
|
SAGESEMSEG_COMPLETED_JOB_pascal_voc_v1_debug_v2=sagesemseg-model-2025-01-11-22-00-08-bW-2025-01-12-06-00-08-928
|
4
4
|
|
5
|
-
SAGESEMSEG_COMPLETED_JOB_pascal_voc_v1_full_v2=sagesemseg-model-2025-01-12-15-52-20-ly-2025-01-12-23-52-20-582
|
5
|
+
SAGESEMSEG_COMPLETED_JOB_pascal_voc_v1_full_v2=sagesemseg-model-2025-01-12-15-52-20-ly-2025-01-12-23-52-20-582
|
6
|
+
|
7
|
+
PALISADES_QUERY_OBJECT_PALISADES_MAXAR=palisades-Palisades-Maxar-query-2025-01-16-181ejb
|
8
|
+
PALISADES_QUERY_OBJECT_PALISADES_MAXAR_TEST=palisades-Palisades-Maxar-test-query-2025-01-16-a2iuxu
|
blue_sandbox/env.py
CHANGED
@@ -21,3 +21,13 @@ SAGESEMSEG_COMPLETED_JOB_pascal_voc_v1_full_v2 = os.getenv(
|
|
21
21
|
"SAGESEMSEG_COMPLETED_JOB_pascal_voc_v1_full_v2",
|
22
22
|
"",
|
23
23
|
)
|
24
|
+
|
25
|
+
PALISADES_QUERY_OBJECT_PALISADES_MAXAR = os.getenv(
|
26
|
+
"PALISADES_QUERY_OBJECT_PALISADES_MAXAR",
|
27
|
+
"",
|
28
|
+
)
|
29
|
+
|
30
|
+
PALISADES_QUERY_OBJECT_PALISADES_MAXAR_TEST = os.getenv(
|
31
|
+
"PALISADES_QUERY_OBJECT_PALISADES_MAXAR_TEST",
|
32
|
+
"",
|
33
|
+
)
|
blue_sandbox/help/functions.py
CHANGED
@@ -5,6 +5,7 @@ from blue_sandbox import ALIAS
|
|
5
5
|
from blue_sandbox.help.microsoft_building_damage_assessment import (
|
6
6
|
help_functions as help_microsoft_building_damage_assessment,
|
7
7
|
)
|
8
|
+
from blue_sandbox.help.palisades import help_functions as help_palisades
|
8
9
|
|
9
10
|
|
10
11
|
help_functions = generic_help_functions(plugin_name=ALIAS)
|
@@ -12,5 +13,6 @@ help_functions = generic_help_functions(plugin_name=ALIAS)
|
|
12
13
|
help_functions.update(
|
13
14
|
{
|
14
15
|
"microsoft_building_damage_assessment": help_microsoft_building_damage_assessment,
|
16
|
+
"palisades": help_palisades,
|
15
17
|
}
|
16
18
|
)
|
@@ -0,0 +1,57 @@
|
|
1
|
+
from typing import List
|
2
|
+
|
3
|
+
from blue_options.terminal import show_usage, xtra
|
4
|
+
|
5
|
+
from blue_geo.watch.targets.target_list import TargetList
|
6
|
+
from blue_geo.help.datacube import scope_details
|
7
|
+
from blue_geo.help.datacube import ingest_options as datacube_ingest_options
|
8
|
+
|
9
|
+
|
10
|
+
target_list = TargetList(catalog="maxar_open_data")
|
11
|
+
|
12
|
+
|
13
|
+
def help_ingest(
|
14
|
+
tokens: List[str],
|
15
|
+
mono: bool,
|
16
|
+
) -> str:
|
17
|
+
options = "".join(
|
18
|
+
[
|
19
|
+
xtra("~download,dryrun,", mono=mono),
|
20
|
+
"upload",
|
21
|
+
]
|
22
|
+
)
|
23
|
+
|
24
|
+
target_options = "".join(
|
25
|
+
[
|
26
|
+
"target=<target>",
|
27
|
+
xtra(" | <query-object-name>", mono),
|
28
|
+
]
|
29
|
+
)
|
30
|
+
|
31
|
+
ingest_options = "".join(
|
32
|
+
[
|
33
|
+
xtra("~ingest_datacubes | ", mono=mono),
|
34
|
+
datacube_ingest_options(mono=mono),
|
35
|
+
]
|
36
|
+
)
|
37
|
+
|
38
|
+
return show_usage(
|
39
|
+
[
|
40
|
+
"palisades",
|
41
|
+
"ingest",
|
42
|
+
f"[{options}]",
|
43
|
+
f"[{target_options}]",
|
44
|
+
f"[{ingest_options}]",
|
45
|
+
],
|
46
|
+
"ingest <target>.",
|
47
|
+
{
|
48
|
+
"target: {}".format(" | ".join(target_list.get_list())): [],
|
49
|
+
**scope_details,
|
50
|
+
},
|
51
|
+
mono=mono,
|
52
|
+
)
|
53
|
+
|
54
|
+
|
55
|
+
help_functions = {
|
56
|
+
"ingest": help_ingest,
|
57
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: blue_sandbox
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.184.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.
|
67
|
+
built by 🌀 [`blue_options-4.190.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.184.1`](https://github.com/kamangir/blue-sandbox).
|
@@ -1,8 +1,8 @@
|
|
1
|
-
blue_sandbox/README.py,sha256=
|
2
|
-
blue_sandbox/__init__.py,sha256=
|
1
|
+
blue_sandbox/README.py,sha256=wy5C7hkd-_RB9HZAmyt75Uevjpxg6Ok7t9SkET3QKHI,2077
|
2
|
+
blue_sandbox/__init__.py,sha256=9AtjSN3Dhwx8zspUGt5HFWH7VKKSUfqzgFqhzP6wU6k,323
|
3
3
|
blue_sandbox/__main__.py,sha256=aPRHSpGpk-bDbzhHpfLNsd3y1gGEHpnhoTF-RBweNwc,361
|
4
|
-
blue_sandbox/config.env,sha256=
|
5
|
-
blue_sandbox/env.py,sha256=
|
4
|
+
blue_sandbox/config.env,sha256=jTPIS1Tpbkj1b28ynqB1atEtkjQfJ04SJC56bLWGnAs,496
|
5
|
+
blue_sandbox/env.py,sha256=gMeUa11uAiiIPPqcXVsELkpxmEbqU0qVoSjwQpH-vw0,747
|
6
6
|
blue_sandbox/functions.py,sha256=U41kQFNPpfYV6KJpMnkqgqLkozqXiG4tgV6rj8IW1BU,7
|
7
7
|
blue_sandbox/host.py,sha256=uJpiM105rnm6ySF16zA7waWekGBdec-dlpoRRU_QqwU,210
|
8
8
|
blue_sandbox/list.py,sha256=yGXV1QyibW4TYdsXQIt4zlErtMvII6X9yJYidsGy7GI,1703
|
@@ -12,11 +12,12 @@ blue_sandbox/urls.py,sha256=tIZ36ONJEoUBM-tFhOpkVhLwb1OgLegUeEaBDqW4USM,24
|
|
12
12
|
blue_sandbox/.abcli/abcli.sh,sha256=xsJ4IzuQsvLZog6U8VTBFVXsEi6ADe13L8rn47XtlbU,196
|
13
13
|
blue_sandbox/.abcli/actions.sh,sha256=vImEUI105GRcxs2mAKGMqcvoErtmOPZZ-7dfSmUUxvE,230
|
14
14
|
blue_sandbox/.abcli/aka.sh,sha256=RHDU_JbEEL2B0vvvRJ3NVSsRSEjSu09jNY85n7DLe-k,21
|
15
|
-
blue_sandbox/.abcli/alias.sh,sha256=
|
15
|
+
blue_sandbox/.abcli/alias.sh,sha256=4sJU9uf0ctMYHe7TLSaEOA1As8w5ssfXtg13SdLNe5E,198
|
16
16
|
blue_sandbox/.abcli/blue_sandbox.sh,sha256=PGRJOgNGlC3XL5cw4ecZH40LDuc_6NVazTKhCWtZ-3g,233
|
17
17
|
blue_sandbox/.abcli/browse.sh,sha256=f8qa4qDVts2Am6_ldDwNeJXzhBQTk9PUKl0-a9wW1ww,287
|
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
|
+
blue_sandbox/.abcli/palisades.sh,sha256=59I4NI8ZULf9zk3yZKsIILqCSbnwFHvpBufV-ORQFio,362
|
20
21
|
blue_sandbox/.abcli/cemetery/inference/cloudwatch.sh,sha256=Pg77qN8kc4AZgQPED1cQAjrmTaReN3K2_PHjSnYcvfA,1307
|
21
22
|
blue_sandbox/.abcli/cemetery/inference/inference.sh,sha256=vyZTBOvpUay65BEjv7d8WjK0PXG7D-JodOorRuP3nIw,5921
|
22
23
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest.sh,sha256=w_EUK_i4iSBpSy22TeexfF9jEAqzNwZuvjhpRraGKhA,2662
|
@@ -25,21 +26,24 @@ blue_sandbox/.abcli/microsoft_building_damage_assessment/label.sh,sha256=RROjENj
|
|
25
26
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/tensorboard.sh,sha256=BHdnOvorV9gjO1ET64tbLOqSGviNFR96S67XHmJz2hs,746
|
26
27
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/train.sh,sha256=XyTTFB2AD7p8XT0x1vvQLwndyscGN23QEDA80wS3cjk,1970
|
27
28
|
blue_sandbox/.abcli/microsoft_building_damage_assessment/ingest/list.sh,sha256=9bEjpbwO7Heqd-E2RTM-ck4Q39Eqsv4ged6e0WmxmSs,452
|
29
|
+
blue_sandbox/.abcli/palisades/ingest.sh,sha256=_-QiAK89MEMDSb4QFeQxxLt9T3nt0Qka0wliO0UqrS4,1443
|
28
30
|
blue_sandbox/.abcli/sagesemseg/cache_dataset.sh,sha256=oAXW1AGer6tuLBQrdNqz7VyMIQtubMXDeUg4crkQiqM,1335
|
29
31
|
blue_sandbox/.abcli/sagesemseg/consts.sh,sha256=xKVE1hAzVPqz0SkY_0h7Fpgy1OEQOFsf3sQHfLHgnQ4,95
|
30
32
|
blue_sandbox/.abcli/sagesemseg/train.sh,sha256=FtI9ccqivAefOjHADRpHJpbiw8ewrje_q_MBezSN0TM,1598
|
31
33
|
blue_sandbox/.abcli/sagesemseg/upload_dataset.sh,sha256=ict5y81B7DkrEVruu9vmH8s_pjFZIUzvt3Ip3Y4zunY,1534
|
32
34
|
blue_sandbox/.abcli/tests/README.sh,sha256=rmJM-BPnTcmpPbJ5GXsF8vd_a84JKryeKkZyVScUing,145
|
33
|
-
blue_sandbox/.abcli/tests/help.sh,sha256=
|
35
|
+
blue_sandbox/.abcli/tests/help.sh,sha256=YHalOdoK9RNN9oSmOHHhbLWedQ5NRoVkrbSIee6UCG0,584
|
34
36
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest.sh,sha256=oUUF8Kuyohxiqxo9FLY9EO0qlgkagntgfuFda6niHeM,426
|
35
37
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_ingest_list.sh,sha256=5P0H-FHV7YKt1fenXAs_0cSFhJYWZ9u3LzRpfSRSptw,577
|
36
38
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_label.sh,sha256=Envac5i9eGa5usDCO8MYfGFfyAZAT-f0KrrsAkaR91U,311
|
37
39
|
blue_sandbox/.abcli/tests/microsoft_building_damage_assessment_train.sh,sha256=0FlwyR1drn6wAKX9IHU_ma7WTmH1Iv8DoTNsdsyj3PA,533
|
40
|
+
blue_sandbox/.abcli/tests/palisades_ingest.sh,sha256=10bxd7U7T3VeFuA6yS5Wl1oZ3dnfahu_b9pkHDlPU8E,754
|
38
41
|
blue_sandbox/.abcli/tests/sagesemseg_train.sh,sha256=GQmZscd2507sy3Kz3LPN_O7Dso_wQB3d6SzNwB7bXeE,863
|
39
42
|
blue_sandbox/.abcli/tests/version.sh,sha256=jF8zoJN1eKE3LfDeRVG9uHEosmEVJX6RtKfdioyeN-o,150
|
40
43
|
blue_sandbox/help/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
41
44
|
blue_sandbox/help/__main__.py,sha256=3Cqp5oISrZCOUApmwoQoCj_0sQgtkiEkm_ob3LFKzRE,234
|
42
|
-
blue_sandbox/help/functions.py,sha256
|
45
|
+
blue_sandbox/help/functions.py,sha256=-AOhYAowmqulhAjrr5B6-AwIDuhZoS0I45flDbt_XRA,541
|
46
|
+
blue_sandbox/help/palisades.py,sha256=hPfVN7603tRe791au8Nz1MYyZcsDBVFQSuPUsobCStA,1216
|
43
47
|
blue_sandbox/microsoft_building_damage_assessment/README.py,sha256=qqe1wXoc4TjKS4o3gskwNCBuX8PTVduQEAaVHeovsrE,1275
|
44
48
|
blue_sandbox/microsoft_building_damage_assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
49
|
blue_sandbox/microsoft_building_damage_assessment/__main__.py,sha256=RnyXyJdLmzLzccVmb6VZvD17Dwx-g1wByDugIisoPmQ,1995
|
@@ -47,8 +51,8 @@ blue_sandbox/microsoft_building_damage_assessment/ingest.py,sha256=tBchn4dWPIqAr
|
|
47
51
|
blue_sandbox/microsoft_building_damage_assessment/label.py,sha256=mpRNOsF8ChxSLwOyvwGmXiD7aO2xfivJPZTC5qwnLaw,823
|
48
52
|
blue_sandbox/microsoft_building_damage_assessment/sas_token.py,sha256=t6oTXc6C52CH3tFbQo2H9YUB_7upAsfUwws43Iu9pHI,214
|
49
53
|
blue_sandbox/microsoft_building_damage_assessment/train.py,sha256=8DUt0S4LuKkRIi9XpASOg5skPaM3D2VaSBg5FEn8qog,2778
|
50
|
-
blue_sandbox-5.
|
51
|
-
blue_sandbox-5.
|
52
|
-
blue_sandbox-5.
|
53
|
-
blue_sandbox-5.
|
54
|
-
blue_sandbox-5.
|
54
|
+
blue_sandbox-5.184.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
55
|
+
blue_sandbox-5.184.1.dist-info/METADATA,sha256=dTUqRsf2VkWLiaeLj4ZA3girTUUim3YyLbYFY6b2srQ,3761
|
56
|
+
blue_sandbox-5.184.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
57
|
+
blue_sandbox-5.184.1.dist-info/top_level.txt,sha256=4D9Cb9QUCaqdYAmBiCwvtlaYBtUYVVxv0Sxcr_pzgS8,13
|
58
|
+
blue_sandbox-5.184.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|