前提・実現したいこと
ゼロから作るディープラーニングにおいてmnistを読み込むところで
下記のようなエラーが発生しています。
どうすればエラーが無くなるのでしょうか
発生している問題・エラーメッセージ
Converting train-images-idx3-ubyte.gz to NumPy Array ...
Traceback (most recent call last):
File "<stdin>", line 6, in <module>
File "..\dataset\mnist.py", line 106, in load_mnist
init_mnist()
File "..\dataset\mnist.py", line 76, in init_mnist
dataset = _convert_numpy()
File "..\dataset\mnist.py", line 67, in _convert_numpy
dataset['train_img'] = _load_img(key_file['train_img'])
File "..\dataset\mnist.py", line 59, in _load_img
data = np.frombuffer(f.read(), np.uint8, offset=16)
File "C:\Users\user\AppData\Local\Programs\Python\Python39\lib\gzip.py", line 300, in read
return self._buffer.read(size)
File "C:\Users\user\AppData\Local\Programs\Python\Python39\lib\gzip.py", line 506, in read
raise EOFError("Compressed file ended before the "
EOFError: Compressed file ended before the end-of-stream marker was reached
該当のソースコード
import sys, os
os.chdir('C:/Users/user/Documents/deep-learning-from-scratch-master/ch03')
sys.path.append(os.pardir)
from dataset.mnist import load_mnist
(x_train,t_train),(x_test,t_test)=load_mnist(flatten=True,normalize=False)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/31 09:48