Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.
6404 Discussions

dlnets.sh cannot download "Squeezenet.caffemodel" due to incorrect web address

idata
Employee
964 Views
Issue

 

dlnets.sh includes an incorrect statement in case that we download squeeze network model.

 

Reproduce

 

Download Movidus SDK from https://ncsforum.movidius.com/discussion/118/movidius-nc-sdk-1-07-07-with-raspberry-pi-support

 

Then, Decompress *.tgz file

 

leemgs@u16.04$ cd ./movidius/1.07.07/bin/data/

 

leemgs@u16.04$ time ./dlnets.sh

 

How to fix

 

Replace "blob" with "raw" in case of SqueezeNet as following:

 

before)

 

leemgs@u16.04$ vi dlnets.sh wget https://github.com/DeepScale/SqueezeNet/**blob**/master/SqueezeNet_v1.0/squeezenet_v1.0.caffemodel -O squeezenet.caffemodel

 

after)

 

leemgs@u16.04$ vi ./dlnets.sh wget https://github.com/DeepScale/SqueezeNet/**raw**/master/SqueezeNet_v1.0/squeezenet_v1.0.caffemodel -O squeezenet.caffemodel

 

Self verification

 

before)

 

leemgs@u16.04$ file *.caffemodel age.caffemodel: data alexnet.caffemodel: data gender.caffemodel: data googlenet.caffemodel: data lenet8.caffemodel: data squeezenet.caffemodel: HTML document, UTF-8 Unicode text, with very long lines

 

after)

 

leemgs@u16.04$ file *.caffemodel age.caffemodel: data alexnet.caffemodel: data gender.caffemodel: data googlenet.caffemodel: data lenet8.caffemodel: data squeezenet.caffemodel: data
0 Kudos
0 Replies
Reply