このプログラムを使用して、ここにリンクされているMNISTデータセットをPython 3.2 にロードしようとしています。
import pickle
import gzip
import numpy
with gzip.open('mnist.pkl.gz', 'rb') as f:
l = list(pickle.load(f))
print(l)
残念ながら、それは私にエラーを与えます:
Traceback (most recent call last):
File "mnist.py", line 7, in <module>
train_set, valid_set, test_set = pickle.load(f)
UnicodeDecodeError: 'ascii' codec can't decode byte 0x90 in position 614: ordinal not in range(128)
次に、漬けたファイルをPython 2.7でデコードし、再エンコードしようとしました。したがって、私はこのプログラムをPython 2.7で実行しました。
import pickle
import gzip
import numpy
with gzip.open('mnist.pkl.gz', 'rb') as f:
train_set, valid_set, test_set = pickle.load(f)
# Printing out the three objects reveals that they are
# all pairs containing numpy arrays.
with gzip.open('mnistx.pkl.gz', 'wb') as g:
pickle.dump(
(train_set, valid_set, test_set),
g,
protocol=2) # I also tried protocol 0.
エラーなしで実行されたため、このプログラムをPython 3.2で再実行しました。
import pickle
import gzip
import numpy
# note the filename change
with gzip.open('mnistx.pkl.gz', 'rb') as f:
l = list(pickle.load(f))
print(l)
ただし、以前と同じエラーが発生しました。これを機能させるにはどうすればよいですか?