Skip to content

Commit 36562ef

Browse files
author
Kevis
committed
scripts to download models
1 parent 0114f21 commit 36562ef

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.idea/
22
*.gv
33
*.pdf
4-
models/*
4+
models/*.pth
5+
models/runs/*
56
runs/*
67
*.pth
78
*.pyc
@@ -10,4 +11,4 @@ params.py
1011
*.txt
1112
cluster/script.sh
1213
cluster/train_parent.sh
13-
experiments/
14+
experiments/

models/download_parent_model.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
# Download the parent model to directly use it for online training
4+
wget https://data.vision.ee.ethz.ch/kmaninis/share/OSVOS/Downloads/models/pth_parent_model.zip
5+
unzip pth_parent_model.zip
6+
rm pth_parent_model.zip

models/download_vgg_weights.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
# Download the parent model to directly use it for online training
4+
wget https://data.vision.ee.ethz.ch/kmaninis/share/OSVOS/Downloads/models/vgg_mat.zip
5+
unzip vgg_mat.zip
6+
rm vgg_mat.zip

0 commit comments

Comments
 (0)