Datasets:

Modalities:
Image
Text
Formats:
csv
Languages:
English
ArXiv:
DOI:
Libraries:
Datasets
pandas
License:
sammarfy commited on
Commit
9ec2862
1 Parent(s): 9c1e500

Upload download_bird_images.sh

Browse files
Files changed (1) hide show
  1. download_bird_images.sh +6 -0
download_bird_images.sh ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ wget -c https://data.caltech.edu/records/65de6-vp158/files/CUB_200_2011.tgz
2
+ tar -xzf CUB_200_2011.tgz
3
+ mkdir -p datasets/Bird/images
4
+ find CUB_200_2011/images/ -type f -name "*.jpg" -exec cp {} datasets/Bird/images/ \;
5
+ rm -rf CUB_200_2011.tgz CUB_200_2011/
6
+ echo "Bird dataset downloaded!"