Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion data/scripts/fetch_faster_rcnn_models.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ fi

echo "Downloading Faster R-CNN demo models (695M)..."

wget $URL -O $FILE
if command -v wget >/dev/null 2>/dev/null; then
wget $URL -O $FILE
else
curl -O $URL --output $FILE
fi

echo "Unzipping..."

Expand Down
6 changes: 5 additions & 1 deletion data/scripts/fetch_imagenet_models.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ fi

echo "Downloading pretrained ImageNet models (1G)..."

wget $URL -O $FILE
if command -v wget >/dev/null 2>/dev/null; then
wget $URL -O $FILE
else
curl -O $URL --output $FILE
fi

echo "Unzipping..."

Expand Down
6 changes: 5 additions & 1 deletion data/scripts/fetch_selective_search_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ fi

echo "Downloading precomputed selective search boxes (0.5G)..."

wget $URL -O $FILE
if command -v wget >/dev/null 2>/dev/null; then
wget $URL -O $FILE
else
curl -O $URL --output $FILE
fi

echo "Unzipping..."

Expand Down