python读取二进制mnist

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取二进制mnist相关的知识,希望对你有一定的参考价值。

training data 数据结构:


[offset] [type] [value] [description] 0000 32 bit integer 0x00000803(2051) magic number 0004 32 bit integer 60000 number of images 0008 32 bit integer 28 number of rows 0012 32 bit integer 28 number of columns 0016 unsigned byte ?? pixel 0017 unsigned byte ?? pixel ........ xxxx unsigned byte ?? pixel

 

 

 将整个文件读入:

filename = ‘train-images.idx3-ubyte‘
binfile = open(filename , ‘rb‘)
buf = binfile.read()

 

读取头四个32bit的interger:

index = 0
magic, numImages , numRows , numColumns = struct.unpack_from(‘>IIII‘ , buf , index)
index += struct.calcsize(‘>IIII‘)

 

读取一个图片,784=28*28 :

im = struct.unpack_from(‘>784B‘ ,buf, index)
index += struct.calcsize(‘>784B‘)

im = np.array(im)
im = im.reshape(28,28)

fig = plt.figure()
plotwindow = fig.add_subplot(111)
plt.imshow(im , cmap=‘gray‘)
plt.show()

 


以上是关于python读取二进制mnist的主要内容,如果未能解决你的问题,请参考以下文章

如何在 C++ 中读取 MNIST 数据?

[BPnet识别MNIST02]MNIST字符集下载以及python读取

Python读取MNIST数据集

python读取MNIST image数据

mnist的格式说明,以及在python3.x和python 2.x读取mnist数据集的不同

python读取mnist label数据库