소스 검색

CVPR 2021 Argoverse-HD autodownload curl (#2455)

curl preferred over wget for slightly better cross platform compatibility (i.e. out of the box macos compatible).
5.0
Glenn Jocher GitHub 3 년 전
부모
커밋
747c2653ee
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      data/scripts/get_argoverse_hd.sh

+ 1
- 1
data/scripts/get_argoverse_hd.sh 파일 보기

@@ -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/

Loading…
취소
저장