-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdo_test_run.sh
More file actions
executable file
·78 lines (63 loc) · 2.33 KB
/
do_test_run.sh
File metadata and controls
executable file
·78 lines (63 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env bash
# Stop at first error
set -e
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
DOCKER_IMAGE_TAG="example-evaluation-track-2-atypical-mitosis-classification-preliminary-eval-phase"
DOCKER_NOOP_VOLUME="${DOCKER_IMAGE_TAG}-volume"
INPUT_DIR="${SCRIPT_DIR}/test/input"
OUTPUT_DIR="${SCRIPT_DIR}/test/output"
echo "=+= (Re)build the container"
source "${SCRIPT_DIR}/do_build.sh"
cleanup() {
echo "=+= Cleaning permissions ..."
# Ensure permissions are set correctly on the output
# This allows the host user (e.g. you) to access and handle these files
docker run --rm \
--platform=linux/amd64 \
--quiet \
--volume "$OUTPUT_DIR":/output \
--entrypoint /bin/sh \
$DOCKER_IMAGE_TAG \
-c "chmod -R -f o+rwX /output/* || true"
# Ensure volume is removed
docker volume rm "$DOCKER_NOOP_VOLUME" > /dev/null
}
# This allows for the Docker user to read
chmod -R -f o+rX "$INPUT_DIR" "${SCRIPT_DIR}/ground_truth"
if [ -d "$OUTPUT_DIR" ]; then
# This allows for the Docker user to write
chmod -f o+rwX "$OUTPUT_DIR"
echo "=+= Cleaning up any earlier output"
# Use the container itself to circumvent ownership problems
docker run --rm \
--platform=linux/amd64 \
--quiet \
--volume "$OUTPUT_DIR":/output \
--entrypoint /bin/sh \
$DOCKER_IMAGE_TAG \
-c "rm -rf /output/* || true"
else
mkdir -m o+rwX "$OUTPUT_DIR"
fi
docker volume create "$DOCKER_NOOP_VOLUME" > /dev/null
trap cleanup EXIT
echo "=+= Doing a forward pass"
## Note the extra arguments that are passed here:
# '--network none'
# entails there is no internet connection
# 'gpus all'
# enables access to any GPUs present
# '--volume <NAME>:/tmp'
# is added because on Grand Challenge this directory cannot be used to store permanent files
# '-volume ../ground_truth:/opt/ml/input/data/ground_truth:ro'
# is added to provide access to the (optional) tarball-upload locally
docker run --rm \
--platform=linux/amd64 \
--network none \
--volume "$INPUT_DIR":/input:ro \
--volume "$OUTPUT_DIR":/output \
--volume "$DOCKER_NOOP_VOLUME":/tmp \
--volume "${SCRIPT_DIR}/ground_truth":/opt/ml/input/data/ground_truth:ro \
$DOCKER_IMAGE_TAG
echo "=+= Wrote results to ${OUTPUT_DIR}"
echo "=+= Save this image for uploading via ./do_save.sh"