|
#!/bin/bash |
|
|
|
|
|
BLUE='\033[0;34m' |
|
NC='\033[0m' |
|
|
|
|
|
mkdir -p annotation/cirr |
|
|
|
|
|
echo -e "Downloading ${BLUE}CIRR Train${NC} annotations..." |
|
wget https://raw.githubusercontent.com/Cuberick-Orion/CIRR/cirr_dataset/captions/cap.rc2.train.json -q -O annotation/cirr/cap.rc2.train.json |
|
|
|
|
|
echo -e "Downloading ${BLUE}CIRR Val${NC} annotations..." |
|
wget https://raw.githubusercontent.com/Cuberick-Orion/CIRR/cirr_dataset/captions/cap.rc2.val.json -q -O annotation/cirr/cap.rc2.val.json |
|
|
|
|
|
echo -e "Downloading ${BLUE}CIRR Test${NC} annotations..." |
|
wget https://raw.githubusercontent.com/Cuberick-Orion/CIRR/cirr_dataset/captions/cap.rc2.test1.json -q -O annotation/cirr/cap.rc2.test1.json |
|
|