|
#!/bin/bash |
|
|
|
|
|
BLUE='\033[0;34m' |
|
NC='\033[0m' |
|
|
|
|
|
mkdir -p annotation/webvid-covr |
|
|
|
|
|
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/ |
|
|
|
|
|
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/ |
|
|
|
|
|
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/ |
|
|