12 lines
No EOL
272 B
Bash
Executable file
12 lines
No EOL
272 B
Bash
Executable file
#!/bin/bash
|
|
mkdir dataset
|
|
cd dataset
|
|
wget http://images.cocodataset.org/annotations/annotations_trainval2017.zip
|
|
unzip annotations_trainval2017.zip
|
|
rm annotations_trainval2017.zip
|
|
|
|
wget http://images.cocodataset.org/zips/val2017.zip
|
|
unzip val2017.zip
|
|
rm val2017.zip
|
|
|
|
cd .. |