Skip to content

Commit

Permalink
Added code snippet for downloading the perc task
Browse files Browse the repository at this point in the history
  • Loading branch information
gtoderici authored Apr 29, 2021
1 parent 9a28f0c commit 7cb6c4b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,14 @@ We released the following files:
* [https://storage.googleapis.com/clic2021_public/perceptual/test/e.tar](https://storage.googleapis.com/clic2021_public/perceptual/test/e.tar) MD5 (e.tar) = 1d5da08c1eb8f26463fd7c80e0be920b
* [https://storage.googleapis.com/clic2021_public/perceptual/test/f.tar](https://storage.googleapis.com/clic2021_public/perceptual/test/f.tar) MD5 (f.tar) = 3425385b344c5daf4bd7a3e526ff07a7

You could use the following snippet to download the files in parallel:

```bash
wget https://storage.googleapis.com/clic2021_public/perceptual/test/clic_2021_test.zip
for i in 0 1 2 3 4 5 6 7 8 9 a b c d e f; do
# Note: remove the ampersand if you don't want to have 16 wget processes running at once
wget https://storage.googleapis.com/clic2021_public/perceptual/test/$i.tar &
done```
Once you've downloaded all the files, you'll need to unarchive them.
Expand Down

0 comments on commit 7cb6c4b

Please sign in to comment.