blue-sandbox 5.148.1__py3-none-any.whl → 5.172.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- blue_sandbox/.abcli/alias.sh +2 -0
- blue_sandbox/.abcli/palisades/ingest.sh +51 -0
- blue_sandbox/.abcli/palisades.sh +15 -0
- blue_sandbox/.abcli/tests/help.sh +3 -0
- blue_sandbox/.abcli/tests/palisades_ingest.sh +37 -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 +50 -0
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.172.1.dist-info}/METADATA +2 -2
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.172.1.dist-info}/RECORD +16 -12
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.172.1.dist-info}/LICENSE +0 -0
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.172.1.dist-info}/WHEEL +0 -0
- {blue_sandbox-5.148.1.dist-info → blue_sandbox-5.172.1.dist-info}/top_level.txt +0 -0
blue_sandbox/.abcli/alias.sh
CHANGED
@@ -0,0 +1,51 @@
|
|
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 ingest_object_name=$(abcli_clarify_object $4 $query_object_name-ingest-$(abcli_string_timestamp))
|
30
|
+
|
31
|
+
local list_of_datacubes=$(blue_geo_catalog_query_read all \
|
32
|
+
$query_object_name \
|
33
|
+
--log 0 \
|
34
|
+
--delim +)
|
35
|
+
@log_list "$list_of_datacubes" \
|
36
|
+
--before ingesting \
|
37
|
+
--after "datacube(s)" \
|
38
|
+
--delim +
|
39
|
+
|
40
|
+
local datacube_id
|
41
|
+
local do_ingest_datacubes=$(abcli_option_int "$datacube_ingest_options" ingest_datacubes 0)
|
42
|
+
if [[ "$do_ingest_datacubes" == 1 ]]; then
|
43
|
+
for datacube_id in $(echo $list_of_datacubes | tr + " "); do
|
44
|
+
blue_geo_datacube_ingest \
|
45
|
+
,$datacube_ingest_options \
|
46
|
+
$datacube_id
|
47
|
+
done
|
48
|
+
fi
|
49
|
+
|
50
|
+
abcli_log "🪄"
|
51
|
+
}
|
@@ -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,37 @@
|
|
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
|
+
- \
|
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_TEST_QUERY_OBJECT_NAME \
|
23
|
+
- \
|
24
|
+
-
|
25
|
+
}
|
26
|
+
|
27
|
+
function test_blue_sandbox_palisades_ingest_target_ingest_datacubes() {
|
28
|
+
local options=$1
|
29
|
+
|
30
|
+
abcli_eval ,$options \
|
31
|
+
blue_sandbox_palisades \
|
32
|
+
ingest \
|
33
|
+
~upload \
|
34
|
+
target=Palisades-Maxar-test \
|
35
|
+
ingest_datacubes,scope=rgb \
|
36
|
+
-
|
37
|
+
}
|
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_TEST_QUERY_OBJECT_NAME=palisades-Palisades-Maxar-query-2025-01-16-181ejb
|
8
|
+
PALISADES_TEST_QUERY_OBJECT_NAME_2D=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_TEST_QUERY_OBJECT_NAME = os.getenv(
|
26
|
+
"PALISADES_TEST_QUERY_OBJECT_NAME",
|
27
|
+
"",
|
28
|
+
)
|
29
|
+
|
30
|
+
PALISADES_TEST_QUERY_OBJECT_NAME_2D = os.getenv(
|
31
|
+
"PALISADES_TEST_QUERY_OBJECT_NAME_2D",
|
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,50 @@
|
|
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 ingest_options, scope_details
|
7
|
+
|
8
|
+
|
9
|
+
target_list = TargetList(catalog="maxar_open_data")
|
10
|
+
|
11
|
+
|
12
|
+
def help_ingest(
|
13
|
+
tokens: List[str],
|
14
|
+
mono: bool,
|
15
|
+
) -> str:
|
16
|
+
options = "".join(
|
17
|
+
[
|
18
|
+
xtra("~download,dryrun,", mono=mono),
|
19
|
+
"upload",
|
20
|
+
]
|
21
|
+
)
|
22
|
+
|
23
|
+
target_options = "".join(
|
24
|
+
[
|
25
|
+
"target=<target>",
|
26
|
+
xtra(" | <query-object-name>", mono),
|
27
|
+
]
|
28
|
+
)
|
29
|
+
|
30
|
+
return show_usage(
|
31
|
+
[
|
32
|
+
"palisades",
|
33
|
+
"ingest",
|
34
|
+
f"[{options}]",
|
35
|
+
f"[{target_options}]",
|
36
|
+
f"[ingest_datacubes,{ingest_options(mono=mono)}]",
|
37
|
+
"[-|<ingest-object-name>]",
|
38
|
+
],
|
39
|
+
"ingest <target>.",
|
40
|
+
{
|
41
|
+
"target: {}".format(" | ".join(target_list.get_list())): [],
|
42
|
+
**scope_details,
|
43
|
+
},
|
44
|
+
mono=mono,
|
45
|
+
)
|
46
|
+
|
47
|
+
|
48
|
+
help_functions = {
|
49
|
+
"ingest": help_ingest,
|
50
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: blue_sandbox
|
3
|
-
Version: 5.
|
3
|
+
Version: 5.172.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.189.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.
|
67
|
+
built by 🌀 [`blue_options-4.189.1`](https://github.com/kamangir/awesome-bash-cli), based on 🌀 [`blue_sandbox-5.172.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=O3ZKfPWN-Zn3r_GD5g3RimS1c5h6sde56c7ZrjN89pA,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=hJ6hXH8vy5Az-XHQTcl879w9QWNkJJ4dKKgCVNPYYes,482
|
5
|
+
blue_sandbox/env.py,sha256=NwDIBFyCbcHFd0_1DXpgbCPj7k964p4CzE4jbeeZ1fU,719
|
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=6ounVUfyAU4t299U3aN4opuziLSoWFW3yivApqX9pvU,1574
|
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=iv5vxCRAZPQBDF5yea0fux-5FIIN4FSeqqm5qX9RoSc,768
|
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=bprEU1qQmAYEwD97JgwmPQZs4HrO9abq9CkWg4700gk,1065
|
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.172.1.dist-info/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
|
55
|
+
blue_sandbox-5.172.1.dist-info/METADATA,sha256=tl-89W6I5h7CaTwpV4HGzLruRaijwPBsPHu0RTmpUt4,3761
|
56
|
+
blue_sandbox-5.172.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
57
|
+
blue_sandbox-5.172.1.dist-info/top_level.txt,sha256=4D9Cb9QUCaqdYAmBiCwvtlaYBtUYVVxv0Sxcr_pzgS8,13
|
58
|
+
blue_sandbox-5.172.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|