回答編集履歴

1

edit

2017/12/28 08:15

投稿

mkgrei
mkgrei

スコア8560

test CHANGED
@@ -1,3 +1,37 @@
1
+ 例えばダウンロードするだけの以下のようなコードを実行すると、
2
+
3
+ ```python
4
+
5
+ import chainer
6
+
7
+ train, test = chainer.datasets.get_mnist()
8
+
9
+ ```
10
+
11
+
12
+
13
+ 以下のようなダウンロード情報が順次表示されてダウンロードが完了します。
14
+
15
+ エラーはその後に出ていますか?
16
+
17
+ ```
18
+
19
+ Downloading from http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz...
20
+
21
+ Downloading from http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz...
22
+
23
+ Downloading from http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz...
24
+
25
+ Downloading from http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz...
26
+
27
+ ```
28
+
29
+
30
+
31
+ ---
32
+
33
+
34
+
1
35
  データのダウンロードに失敗したようですね。
2
36
 
3
37
  Chainerではありませんが、