Skip to content

Commit

Permalink
CI Failure Fix (apache#1682)
Browse files Browse the repository at this point in the history
The recent changes in tutorial is with PR # apache#1501 broken the link for downloading the weights file, leading to this CI failure.
  • Loading branch information
siju-samuel authored and ZhennanQin committed Sep 6, 2018
1 parent d49fa6d commit f8a69dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/nnvm/from_darknet.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
WEIGHTS_NAME = MODEL_NAME + '.weights'
REPO_URL = 'https://github.com/siju-samuel/darknet/blob/master/'
CFG_URL = REPO_URL + 'cfg/' + CFG_NAME + '?raw=true'
WEIGHTS_URL = REPO_URL + 'weights/' + WEIGHTS_NAME + '?raw=true'
WEIGHTS_URL = 'https://pjreddie.com/media/files/' + WEIGHTS_NAME

download(CFG_URL, CFG_NAME)
download(WEIGHTS_URL, WEIGHTS_NAME)
Expand Down

0 comments on commit f8a69dc

Please sign in to comment.