Spaces:
Sleeping
Sleeping
File size: 720 Bytes
ed00004 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/bin/bash
# Define colors
BLUE='\033[0;34m'
NC='\033[0m' # No Color
# Create directory
mkdir -p annotation/webvid-covr
# Download Train annotations
echo -e "Downloading ${BLUE}WebVid-CoVR Train${NC} annotations..."
wget http://imagine.enpc.fr/~ventural/covr/dataset/webvid2m-covr_train.csv -q -P annotation/webvid-covr/
# Download Val annotations
echo -e "Downloading ${BLUE}WebVid-CoVR Val${NC} annotations..."
wget http://imagine.enpc.fr/~ventural/covr/dataset/webvid8m-covr_val.csv -q -P annotation/webvid-covr/
# Download Test annotations
echo -e "Downloading ${BLUE}WebVid-CoVR Test${NC} annotations..."
wget http://imagine.enpc.fr/~ventural/covr/dataset/webvid8m-covr_test.csv -q -P annotation/webvid-covr/
|