glenn-jocher commited on
Commit
747c265
·
unverified ·
1 Parent(s): 08d4918

CVPR 2021 Argoverse-HD autodownload curl (#2455)

Browse files

curl preferred over wget for slightly better cross platform compatibility (i.e. out of the box macos compatible).

Files changed (1) hide show
  1. data/scripts/get_argoverse_hd.sh +1 -1
data/scripts/get_argoverse_hd.sh CHANGED
@@ -12,7 +12,7 @@ d='../argoverse/' # unzip directory
12
  mkdir $d
13
  url=https://argoverse-hd.s3.us-east-2.amazonaws.com/
14
  f=Argoverse-HD-Full.zip
15
- wget $url$f -O $f && unzip -q $f -d $d && rm $f &# download, unzip, remove in background
16
  wait # finish background tasks
17
 
18
  cd ../argoverse/Argoverse-1.1/
 
12
  mkdir $d
13
  url=https://argoverse-hd.s3.us-east-2.amazonaws.com/
14
  f=Argoverse-HD-Full.zip
15
+ curl -L $url$f -o $f && unzip -q $f -d $d && rm $f &# download, unzip, remove in background
16
  wait # finish background tasks
17
 
18
  cd ../argoverse/Argoverse-1.1/