File size: 823 Bytes
6f6830f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#!/bin/bash -e
# Copyright (c) Facebook, Inc. and its affiliates.

# Download the mini dataset (coco val2017_100, with only 100 images)
# to be used in unittests & integration tests.

cd "${0%/*}"

BASE=https://dl.fbaipublicfiles.com/detectron2
ROOT=${DETECTRON2_DATASETS:-./}
ROOT=${ROOT/#\~/$HOME}   # expand ~ to HOME
mkdir -p $ROOT/coco/annotations

for anno in instances_val2017_100 \
  person_keypoints_val2017_100 ; do

  dest=$ROOT/coco/annotations/$anno.json
  [[ -s $dest ]] && {
    echo "$dest exists. Skipping ..."
  } || {
    wget $BASE/annotations/coco/$anno.json -O $dest
  }
done

dest=$ROOT/coco/val2017_100.tgz
[[ -d $ROOT/coco/val2017 ]] && {
  echo "$ROOT/coco/val2017 exists. Skipping ..."
} || {
  wget $BASE/annotations/coco/val2017_100.tgz -O $dest
  tar xzf $dest -C $ROOT/coco/ && rm -f $dest
}