当前位置:   article > 正文

TensorFlow 制作自己的TFRecord数据集_tfrecord 自定义

tfrecord 自定义

官网的mnist和cifar10数据之后,笔者尝试着制作自己的数据集,并保存,读入,显示。 TensorFlow可以支持cifar10的数据格式, 也提供了标准的TFRecord 格式,而关于 tensorflow 读取数据, 官网提供了3中方法 
1 Feeding: 在tensorflow程序运行的每一步, 用Python代码在线提供数据 
2 Reader : 在一个计算图(tf.graph)的开始前,将文件读入到流(queue)中 
3 在声明tf.variable变量或numpy数组时保存数据。受限于内存大小,适用于数据较小的情况

在本文,主要介绍第二种方法,利用tf.record标准接口来读入文件

准备图片数据

笔者找了2类狗的图片, 哈士奇和吉娃娃, 全部 resize成128 * 128大小 
如下图, 保存地址为/home/molys/Python/data/dog 
这里写图片描述 
每类中有10张图片 
这里写图片描述 
这里写图片描述

现在利用这2 类 20张图片制作TFRecord文件

制作TFRECORD文件

1 先聊一下tfrecord, 这是一种将图像数据和标签放在一起的二进制文件,能更好的利用内存,在tensorflow中快速的复制,移动,读取,存储 等等..

这里注意,tfrecord会根据你选择输入文件的类,自动给每一类打上同样的标签 
如在本例中,只有0,1 两类

2 先上“制作TFRecord文件”的代码,注释附详解

  1. import os
  2. import tensorflow as tf
  3. from PIL import Image #注意Image,后面会用到
  4. import matplotlib.pyplot as plt
  5. import numpy as np
  6. cwd='/home/molys/Python/data/'
  7. classes={'husky','chihuahua'} #人为 设定 2
  8. writer= tf.python_io.TFRecordWriter("dog_train.tfrecords") #要生成的文件
  9. for index,name in enumerate(classes):
  10. class_path=cwd+name+'/'
  11. for img_name in os.listdir(class_path):
  12. img_path=class_path+img_name #每一个图片的地址
  13. img=Image.open(img_path)
  14. img= img.resize((128,128))
  15. img_raw=img.tobytes()#将图片转化为二进制格式
  16. example = tf.train.Example(features=tf.train.Features(feature={
  17. "label": tf.train.Feature(int64_list=tf.train.Int64List(value=[index])),
  18. 'img_raw': tf.train.Feature(bytes_list=tf.train.BytesList(value=[img_raw]))
  19. })) #example对象对label和image数据进行封装
  20. writer.write(example.SerializeToString()) #序列化为字符串
  21. writer.close()

运行完这段代码后,会生成dog_train.tfrecords 文件,如下图 
这里写图片描述

tf.train.Example 协议内存块包含了Features字段,通过feature将图片的二进制数据和label进行统一封装, 然后将example协议内存块转化为字符串, tf.python_io.TFRecordWriter 写入到TFRecords文件中。

读取TFRECORD文件

在制作完tfrecord文件后, 将该文件读入到数据流中。 
代码如下

  1. def read_and_decode(filename): # 读入dog_train.tfrecords
  2. filename_queue = tf.train.string_input_producer([filename])#生成一个queue队列
  3. reader = tf.TFRecordReader()
  4. _, serialized_example = reader.read(filename_queue)#返回文件名和文件
  5. features = tf.parse_single_example(serialized_example,
  6. features={
  7. 'label': tf.FixedLenFeature([], tf.int64),
  8. 'img_raw' : tf.FixedLenFeature([], tf.string),
  9. })#将image数据和label取出来
  10. img = tf.decode_raw(features['img_raw'], tf.uint8)
  11. img = tf.reshape(img, [128, 128, 3]) #reshape为128*1283通道图片
  12. img = tf.cast(img, tf.float32) * (1. / 255) - 0.5 #在流中抛出img张量
  13. label = tf.cast(features['label'], tf.int32) #在流中抛出label张量
  14. return img, label

注意,feature的属性“label”和“img_raw”名称要和制作时统一 ,返回的img数据和label数据一一对应。返回的img和label是2个 tf 张量,print出来 如下图 
这里写图片描述

显示tfrecord格式的图片

有些时候我们希望检查分类是否有误,或者在之后的网络训练过程中可以监视,输出图片,来观察分类等操作的结果,那么我们就可以session回话中,将tfrecord的图片从流中读取出来,再保存。 紧跟着一开始的代码写:

  1. filename_queue = tf.train.string_input_producer(["dog_train.tfrecords"]) #读入流中
  2. reader = tf.TFRecordReader()
  3. _, serialized_example = reader.read(filename_queue) #返回文件名和文件
  4. features = tf.parse_single_example(serialized_example,
  5. features={
  6. 'label': tf.FixedLenFeature([], tf.int64),
  7. 'img_raw' : tf.FixedLenFeature([], tf.string),
  8. }) #取出包含image和label的feature对象
  9. image = tf.decode_raw(features['img_raw'], tf.uint8)
  10. image = tf.reshape(image, [128, 128, 3])
  11. label = tf.cast(features['label'], tf.int32)
  12. with tf.Session() as sess: #开始一个会话
  13. init_op = tf.initialize_all_variables()
  14. sess.run(init_op)
  15. coord=tf.train.Coordinator()
  16. threads= tf.train.start_queue_runners(coord=coord)
  17. for i in range(20):
  18. example, l = sess.run([image,label])#在会话中取出image和label
  19. img=Image.fromarray(example, 'RGB')#这里Image是之前提到的
  20. img.save(cwd+str(i)+'_''Label_'+str(l)+'.jpg')#存下图片
  21. print(example, l)
  22. coord.request_stop()
  23. coord.join(threads)

代码运行完后, 从tfrecord中取出的文件被保存了。如下图: 
这里写图片描述

在这里我们可以看到,图片文件名的第一个数字表示在流中的顺序(笔者这里没有用shuffle), 第二个数字则是 每个图片的label,吉娃娃都为0,哈士奇都为1。 由此可见,我们一开始制作tfrecord文件时,图片分类正确。

如有问题请留言,博主不定期更新。感觉有帮助的话,请赞一个 (。・`ω´・)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/123793
推荐阅读
相关标签
  

闽ICP备14008679号