Skip to content

Commit

Permalink
#206
Browse files Browse the repository at this point in the history
  • Loading branch information
ildoonet committed Jun 12, 2018
1 parent 258bb20 commit 6f12ef2
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 9 deletions.
13 changes: 10 additions & 3 deletions models/pretrained/mobilenet_v1_0.50_224_2017_06_14/download.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/bin/bash

wget http://www.mediafire.com/file/meu73iq8rxlsd3g/mobilenet_v1_0.50_224.ckpt.data-00000-of-00001
wget http://www.mediafire.com/file/7u6iupfkcaxk5hx/mobilenet_v1_0.50_224.ckpt.index
wget http://www.mediafire.com/file/zp8y4d0ytzharzz/mobilenet_v1_0.50_224.ckpt.meta
extract_download_url() {

url=$( wget -q -O - $1 | grep -o 'http*://download[^"]*' | tail -n 1 )
echo "$url"

}

wget --continue $( extract_download_url http://www.mediafire.com/file/meu73iq8rxlsd3g/mobilenet_v1_0.50_224.ckpt.data-00000-of-00001 ) -O mobilenet_v1_0.50_224.ckpt.data-00000-of-00001
wget --continue $( extract_download_url http://www.mediafire.com/file/7u6iupfkcaxk5hx/mobilenet_v1_0.50_224.ckpt.index ) -O mobilenet_v1_0.50_224.ckpt.index
wget --continue $( extract_download_url http://www.mediafire.com/file/zp8y4d0ytzharzz/mobilenet_v1_0.50_224.ckpt.meta ) -O mobilenet_v1_0.50_224.ckpt.meta
13 changes: 10 additions & 3 deletions models/pretrained/mobilenet_v1_0.75_224_2017_06_14/download.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/bin/bash

wget http://www.mediafire.com/file/kibz0x9e7h11ueb/mobilenet_v1_0.75_224.ckpt.data-00000-of-00001
wget http://www.mediafire.com/file/t8909eaikvc6ea2/mobilenet_v1_0.75_224.ckpt.index
wget http://www.mediafire.com/file/6jjnbn1aged614x/mobilenet_v1_0.75_224.ckpt.meta
extract_download_url() {

url=$( wget -q -O - $1 | grep -o 'http*://download[^"]*' | tail -n 1 )
echo "$url"

}

wget --continue $( extract_download_url http://www.mediafire.com/file/kibz0x9e7h11ueb/mobilenet_v1_0.75_224.ckpt.data-00000-of-00001 ) -O mobilenet_v1_0.75_224.ckpt.data-00000-of-00001
wget --continue $( extract_download_url http://www.mediafire.com/file/t8909eaikvc6ea2/mobilenet_v1_0.75_224.ckpt.index ) -O mobilenet_v1_0.75_224.ckpt.index
wget --continue $( extract_download_url http://www.mediafire.com/file/6jjnbn1aged614x/mobilenet_v1_0.75_224.ckpt.meta ) -O mobilenet_v1_0.75_224.ckpt.meta
13 changes: 10 additions & 3 deletions models/pretrained/mobilenet_v1_1.0_224_2017_06_14/download.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/bin/bash

wget http://www.mediafire.com/file/oh6njnz9lgoqwdj/mobilenet_v1_1.0_224.ckpt.data-00000-of-00001
wget http://www.mediafire.com/file/61qln0tbac4ny9o/mobilenet_v1_1.0_224.ckpt.meta
wget http://www.mediafire.com/file/2111rh6tb5fl1lr/mobilenet_v1_1.0_224.ckpt.index
extract_download_url() {

url=$( wget -q -O - $1 | grep -o 'http*://download[^"]*' | tail -n 1 )
echo "$url"

}

wget --continue $( extract_download_url http://www.mediafire.com/file/oh6njnz9lgoqwdj/mobilenet_v1_1.0_224.ckpt.data-00000-of-00001 ) -O mobilenet_v1_1.0_224.ckpt.data-00000-of-00001
wget --continue $( extract_download_url http://www.mediafire.com/file/61qln0tbac4ny9o/mobilenet_v1_1.0_224.ckpt.meta ) -O mobilenet_v1_1.0_224.ckpt.meta
wget --continue $( extract_download_url http://www.mediafire.com/file/2111rh6tb5fl1lr/mobilenet_v1_1.0_224.ckpt.index ) -O mobilenet_v1_1.0_224.ckpt.index

0 comments on commit 6f12ef2

Please sign in to comment.