This is an automated email from the ASF dual-hosted git repository. indhub pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push: new d2d7d65 Update module.md (#10681) d2d7d65 is described below commit d2d7d657001f8bf5595e3dfd6a099e60bfdfb632 Author: ThomasDelteil <thomas.delte...@gmail.com> AuthorDate: Wed Apr 25 08:36:04 2018 -0700 Update module.md (#10681) --- docs/tutorials/basic/module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/basic/module.md b/docs/tutorials/basic/module.md index dbc7b7a..191e3ba 100644 --- a/docs/tutorials/basic/module.md +++ b/docs/tutorials/basic/module.md @@ -44,7 +44,7 @@ import mxnet as mx import numpy as np mx.random.seed(1234) -fname = mx.test_utils.download('http://archive.ics.uci.edu/ml/machine-learning-databases/letter-recognition/letter-recognition.data') +fname = mx.test_utils.download('https://s3.us-east-2.amazonaws.com/mxnet-public/letter_recognition/letter-recognition.data') data = np.genfromtxt(fname, delimiter=',')[:,1:] label = np.array([ord(l.split(',')[0])-ord('A') for l in open(fname, 'r')]) -- To stop receiving notification emails like this one, please contact ind...@apache.org.