cvdfoundation / open-images-dataset

Open Images is a dataset of ~9 million images that have been annotated with image-level labels and bounding boxes spanning thousands of classes.
https://github.com/openimages/dataset
993 stars 157 forks source link

Better to add timeout arguments for aws download #32

Open WarBean opened 4 years ago

WarBean commented 4 years ago

With the suggested command in README to download the tar files, I frequently encountered a "connection closed" error after several minutes of downloading. According to this issue, I add an extra argument, then everything goes well:

aws s3 --no-sign-request --cli-connect-timeout 6000 cp s3://open-images-dataset/tar/test.tar.gz .

It is better to add --cli-connect-timeout 6000 into README so other people will not encounter the "connection closed" error again.