Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions examples/cinc17/setup.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
#!/bin/bash

url=https://www.physionet.org/challenge/2017/
# The original base URL no longer works, we are using direct links.

mkdir data && cd data

curl -O $url/training2017.zip
# Download training data
curl -L -o training2017.zip "https://www.physionet.org/files/challenge-2017/1.0.0/training2017.zip?download"
unzip training2017.zip
curl -O $url/sample2017.zip

# Download sample data
curl -L -o sample2017.zip "https://www.physionet.org/files/challenge-2017/1.0.0/sample2017.zip?download"
unzip sample2017.zip
curl -O $url/REFERENCE-v3.csv

# Download reference file (NOTE: this is called REFERENCE-v3.csv)
curl -L -o REFERENCE-v3.csv "https://www.physionet.org/files/challenge-2017/1.0.0/REFERENCE-v3.csv?download"

cd ..

Expand Down