-
Notifications
You must be signed in to change notification settings - Fork 6.8k
model links data.dmlc.ml are broken #14507
Comments
Hey, this is the MXNet Label Bot. |
According to https://lists.apache.org/thread.html/129d8cb92a978d59ac7dd038c86ffb2db82dc708a3bc09da23727072@%3Cdev.mxnet.apache.org%3E, the change should be @mxnet-label-bot add [Doc, Example, Good first Issue, Call for Contribution] |
My pr also crashed by that: #14474 |
Let me add that the mxnet/cpp-package/example/inference/unit_test_inception_inference.sh is also has the line |
i got that unit_test_inception_inference.sh test to work with the following changes |
I'm working on the fixes here: #14504 |
Now fixed are applied. @jnorwood please feel free to verify and close this issue. |
docs/model_zoo/index.md example/rcnn/README.md tools/coreml/README.md tools/coreml/test/test_mxnet_models.py |
The Thank you! |
there are more broken links still referencing data.dmlc.ml. for example: |
@lebeg Sorry for my misunderstanding. What is the correct URL to download the VGGNet (trained on ImageNet) model? |
http://data.mxnet.io/models/imagenet/vgg/vgg16-0000.params These above work, but the https://mxnet.apache.org/model_zoo/index.html is still not updated, else I would close this. |
Thanks @jnorwood! |
I've updated the remaining http://data.dmlc.ml/ links that I found and verified them in #15065 |
The model links referencing data.dmlc.ml in the model zoo and inference examples are broken.
To fix this, it appears there are more than one issue. First, there are no longer gzipp'd files, and second the data.dmlc.ml site is no longer the correct source for wget.
so, this works:
wget http://data.mxnet.io/models/imagenet/resnet/18-layers/resnet-18-symbol.json
and this works:
wget http://data.mxnet.io/models/imagenet/resnet/18-layers/resnet-18-0000.params
and this works:
wget https://github.com/dmlc/web-data/raw/master/mxnet/neural-style/model/vgg19.params
but the links on https://mxnet.apache.org/model_zoo/index.html
for models and param files are of the form
http://data.dmlc.ml/models/imagenet/squeezenet/squeezenet_v1.1-symbol.json
and the tgz download doc in https://github.com/dmlc/mxnet-model-gallery/blob/master/imagenet-1k-vgg.md uses
wget http://data.dmlc.ml/mxnet/models/imagenet/vgg/vgg16.tar.gz
and that is true for the other models under https://github.com/dmlc/mxnet-model-gallery
So, basically, just look through all the docs and examples and change data.dmlc.ml to whatever is supposed to be the correct address for the downloads. It isn't evident to me if it should be coming from the github raw link above or the data.mxnet.io links, but data.dmlc.ml is simply broken.
The text was updated successfully, but these errors were encountered: