Skip to content

Commit

Permalink
CVPR 2021 Argoverse-HD autodownload curl (ultralytics#2455)
Browse files Browse the repository at this point in the history
curl preferred over wget for slightly better cross platform compatibility (i.e. out of the box macos compatible).
  • Loading branch information
glenn-jocher committed Mar 13, 2021
1 parent 0d8abd4 commit d42fa75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/scripts/get_argoverse_hd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ d='../argoverse/' # unzip directory
mkdir $d
url=https://argoverse-hd.s3.us-east-2.amazonaws.com/
f=Argoverse-HD-Full.zip
wget $url$f -O $f && unzip -q $f -d $d && rm $f &# download, unzip, remove in background
curl -L $url$f -o $f && unzip -q $f -d $d && rm $f &# download, unzip, remove in background
wait # finish background tasks

cd ../argoverse/Argoverse-1.1/
Expand Down

0 comments on commit d42fa75

Please sign in to comment.