回答編集履歴
1
edit
    
        answer	
    CHANGED
    
    | @@ -1,3 +1,20 @@ | |
| 1 | 
            +
            例えばダウンロードするだけの以下のようなコードを実行すると、
         | 
| 2 | 
            +
            ```python
         | 
| 3 | 
            +
            import chainer
         | 
| 4 | 
            +
            train, test = chainer.datasets.get_mnist()
         | 
| 5 | 
            +
            ```
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            以下のようなダウンロード情報が順次表示されてダウンロードが完了します。
         | 
| 8 | 
            +
            エラーはその後に出ていますか?
         | 
| 9 | 
            +
            ```
         | 
| 10 | 
            +
            Downloading from http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz...
         | 
| 11 | 
            +
            Downloading from http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz...
         | 
| 12 | 
            +
            Downloading from http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz...
         | 
| 13 | 
            +
            Downloading from http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz...
         | 
| 14 | 
            +
            ```
         | 
| 15 | 
            +
             | 
| 16 | 
            +
            ---
         | 
| 17 | 
            +
             | 
| 1 18 | 
             
            データのダウンロードに失敗したようですね。
         | 
| 2 19 | 
             
            Chainerではありませんが、
         | 
| 3 20 | 
             
            https://github.com/tensorflow/tensorflow/issues/170
         | 
