Skip to content

Commit bbf4669

Browse files
committed
Remove partial download option, as it has no effect combined with -O
1 parent f50bc17 commit bbf4669

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

research/inception/inception/data/download_imagenet.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ BASE_URL="http://www.image-net.org/challenges/LSVRC/2012/nonpub"
5555
BOUNDING_BOX_ANNOTATIONS="${BASE_URL}/ILSVRC2012_bbox_train_v2.tar.gz"
5656
BBOX_TAR_BALL="${BBOX_DIR}/annotations.tar.gz"
5757
echo "Downloading bounding box annotations."
58-
wget -c "${BOUNDING_BOX_ANNOTATIONS}" -O "${BBOX_TAR_BALL}" || BASE_URL_CHANGE=1
58+
wget "${BOUNDING_BOX_ANNOTATIONS}" -O "${BBOX_TAR_BALL}" || BASE_URL_CHANGE=1
5959
if [ $BASE_URL_CHANGE ]; then
6060
BASE_URL="http://www.image-net.org/challenges/LSVRC/2012/nnoupb"
6161
BOUNDING_BOX_ANNOTATIONS="${BASE_URL}/ILSVRC2012_bbox_train_v2.tar.gz"
62-
wget -c "${BOUNDING_BOX_ANNOTATIONS}" -O "${BBOX_TAR_BALL}"
62+
wget "${BOUNDING_BOX_ANNOTATIONS}" -O "${BBOX_TAR_BALL}"
6363
fi
6464
echo "Uncompressing bounding box annotations ..."
6565
tar xzf "${BBOX_TAR_BALL}" -C "${BBOX_DIR}"

0 commit comments

Comments
 (0)