为了账号安全,请及时绑定邮箱和手机立即绑定

Python读取mnist

标签:
Python

在做 TensorFlow和Python实现神经网络的时候,需要利用到一个MNIST数据集,数据集的格式是以.idx1-ubyte后缀,包含60000个训练图像。将这些图像展示出来,需要利用到[struct模块] iii.run


下载MNIST训练数据集

手动下载

下载链接为: http://yann.lecun.com/exdb/mnist/  下载好之后解压就可以了,网站好像被墙了?

https://img1.sycdn.imooc.com//5d31d20000010ca004950180.jpg

mark

使用tensorflow自带下载

可以看到,这个地方是有监督学习   (有label这个东西嘛)

from tensorflow.examples.tutorials.mnist import input_data# 下载mnist数据集mnist = input_data.read_data_sets('/tmp/', one_hot=True)# 数字(label)只能是0-9,神经网络使用10个出口节点就可以编码表示0-9;#  1 -> [0,1.0,0,0,0,0,0,0,0]   one_hot表示只有一个出口节点是hot#  2 -> [0,0.1,0,0,0,0,0,0,0]#  5 -> [0,0,0,0,0,1.0,0,0,0]#  /tmp是macOS的临时目录,重启系统数据丢失; Linux的临时目录也是/tmp

详细步骤

读取文件

with open(filename ,'rb') as f1:
    buf1 = f1.read()

还有另外一种常用的方法,两个方法目前来看没有什么区别。

f1 = open(filename , 'rb')
buf = binfile.read() # 先使用二进制方式把文件都读进来

跨过头部区域

train-images-idx3-ubyte

TRAINING SET IMAGE FILE (train-images-idx3-ubyte):

[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

可以看到头部有4个integer 类型,设置image_index += struct.calcsize('>IIII')计算4个integer 值的位置,然后image_index 直接跳过去。至于为什么用IIII,愿意的话可以点击了解。

temp = struct.unpack_from('>784B', buf1, image_index) 
# '>784B'的意思就是用大端法读取784( 28*28 )个unsigned byteim = np.reshape(temp,(28,28))

最后那句np.reshape(temp,(28,28))是以下两句的缩写

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

train-labels-idx1-ubyte

可以看到头部有2个integer 类型,同理,label_index 直接跳过去。

TRAINING SET LABEL FILE (train-labels-idx1-ubyte):[offset] [type]          [value]          [description] 0000     32 bit integer  0x00000801(2049) magic number (MSB first) 
0004     32 bit integer  60000            number of items 0008     unsigned byte   ??               label 0009     unsigned byte   ??               label ........ 
xxxx     unsigned byte   ??               labelThe labels values are 0 to 9.

显示图片

plt.imshow(im , cmap='gray')

应该就可以看到图片了,是一张5,  当然头部文件还是要有的

%matplotlib inlineimport numpy as npimport structimport matplotlib.pyplot as plt
path = 'E:\\Machine Learning\\train-images.idx3-ubyte'with open(path,'rb') as f1:
    buf1 = f1.read() 
image_index = 0image_index += struct.calcsize('>IIII')
temp = struct.unpack_from('>784B', buf1, image_index) 
# '>784B'的意思就是用大端法读取784( 28*28 )个unsigned byteim = np.reshape(temp,(28,28))
plt.imshow(im , cmap='gray')

https://img1.sycdn.imooc.com//5d31d2100001caa106960864.jpg

give me 5

多张图片读取

https://img1.sycdn.imooc.com//5d31d215000113d006940488.jpg

多张图片

import numpy as npimport structimport matplotlib.pyplot as pltdef readfile():
    with open('E:\\Machine Learning\\train-images.idx3-ubyte','rb') as f1:
        buf1 = f1.read()    with open('E:\\Machine Learning\\train-labels.idx1-ubyte','rb') as f2:
        buf2 = f2.read()    return buf1, buf2def get_image(buf1):
    image_index = 0
    image_index += struct.calcsize('>IIII')
    im = []    for i in range(9):
        temp = struct.unpack_from('>784B', buf1, image_index) # '>784B'的意思就是用大端法读取784个unsigned byte
        im.append(np.reshape(temp,(28,28)))
        image_index += struct.calcsize('>784B')  # 每次增加784B
    return imdef get_label(buf2): # 得到标签数据
    label_index = 0
    label_index += struct.calcsize('>II')    return struct.unpack_from('>9B', buf2, label_index)if __name__ == "__main__":
    image_data, label_data = readfile()
    im = get_image(image_data)
    label = get_label(label_data)    for i in range(9):
        plt.subplot(3, 3, i + 1)
        title = u"标签对应为:"+ str(label[i])
        plt.title(title, fontproperties='SimHei')
        plt.imshow(im[i], cmap='gray')
    plt.show()

遇到的一些坑:

  • 中文标题乱码的问题

plt.title(title, fontproperties='SimHei') # 后边这个字体**SimHei**加上就好了
  • 标题内部不能用+
    在外部加好之后,赋值给新变量,然后放进title即可



作者:mmmwhy
链接:https://www.jianshu.com/p/81f8ca1b722f

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消