Skip to content

Commit 66980ae

Browse files
committed
fixed download link
1 parent 237352b commit 66980ae

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pip install scikit-image
1717
```
1818

1919
## Step 1: Download pretrained model and dataset
20-
Makesure to install curl ```$ apt-get install curl``` and unzip ```$ apt-get install unzip```
20+
Make sure to install wget ```$ apt-get install wget``` and unzip ```$ apt-get install unzip```
2121
```angular2html
2222
source download.sh
2323
download_dataset

download.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
download_dataset(){
22
(
33
cd 'data'
4-
curl https://www.dropbox.com/s/xtyotb99gqb72xp/virdo_simul_dataset.pickle?dl=0 -L -O -J
5-
unzip -o data.zip virdo_simul_dataset.pickle
4+
wget https://www.dropbox.com/s/xtyotb99gqb72xp/virdo_simul_dataset.pickle
65
)
76
}
87

98
download_pretrained(){
109
(
1110
cd 'pretrained_model'
12-
curl https://www.dropbox.com/sh/s1r9gxd9dz4wdkk/AADK6mHvrPtFYo_xD4EmZZdda?dl=0 -L -O -J
11+
wget https://www.dropbox.com/s/7h2sqc6ouzlk94y/pretrained_model.zip
1312
unzip -o pretrained_model.zip
1413
)
1514
}

0 commit comments

Comments
 (0)