mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
Data download script
Former-commit-id: 88ff94e36c5c8a3f2965c54ada19f39e539229cd
This commit is contained in:
parent
063cbbc599
commit
c5257f8367
18
download_data.sh
Normal file
18
download_data.sh
Normal file
|
@ -0,0 +1,18 @@
|
|||
USERNAME=$1
|
||||
APIKEY=$2
|
||||
|
||||
pip install kaggle --upgrade
|
||||
mkdir -p ~/.kaggle
|
||||
echo "{\"username\":\"$USERNAME\",\"key\":\"$APIKEY\"}" > ~/.kaggle/kaggle.json
|
||||
|
||||
kaggle competitions download -c carvana-image-masking-challenge -f train_hq.zip
|
||||
unzip train_hq.zip
|
||||
mv train_hq/* data/imgs/
|
||||
rm -d train_hq
|
||||
rm train_hq.zip
|
||||
|
||||
kaggle competitions download -c carvana-image-masking-challenge -f train_masks.zip
|
||||
unzip train_masks.zip
|
||||
mv train_masks/* data/masks/
|
||||
rm -d train_masks
|
||||
rm train_masks.zip
|
Loading…
Reference in a new issue