Tensorflow使用TFRecord构建自己的数据集并读取

2024-04-03 01:48

本文主要是介绍Tensorflow使用TFRecord构建自己的数据集并读取,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Tensorflow使用TFRecord构建自己的数据集并读取

参考文章:

http://blog.csdn.net/freedom098/article/details/56011858 
还有 优酷上kevin大神的视频

目标:1、将自己的数据集以TFRecord格式存储。

          2、从TFRecord中读取数据,并使用画图工具,以图片形式展现。


以一个图片为例:


一、将图片存储TFRecod

# 生成整数型的属性
def _int64_feature(value):if not isinstance(value,list):value=[value]return tf.train.Feature(int64_list=tf.train.Int64List(value=value))#生成字符串型的属性
def _byte_feature(value):return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value]))
#将图片存储到tfrecord中
def convert_to_tfrecord(images, labels, save_dir, name):#从图片路径读取图片编码成tfrecord'''''convert all images and labels to one tfrecord file. Args: images: list of image directories, string type labels: list of labels, int type save_dir: the directory to save tfrecord file, e.g.: '/home/folder1/' name: the name of tfrecord file, string type, e.g.: 'train' Return: no return Note: converting needs some time, be patient... ''' filename = (save_dir + name + '.tfrecords')  n_samples = len(labels) #判断 image的样本数量和label是否相同if np.shape(images)[0] != n_samples:  raise ValueError('Images size %d does not match label size %d.' %(images.shape[0], n_samples))  writer = tf.python_io.TFRecordWriter(filename)  print('\nTransform start......')  for i in range(len(images)):  try: image_raw_data = tf.gfile.FastGFile(images[i],'r').read()img_data = tf.image.decode_png(image_raw_data)label = int(labels[i])  example = tf.train.Example(features=tf.train.Features(feature={  'label':int64_feature(label),  'image_raw': bytes_feature(image_raw)}))  writer.write(example.SerializeToString())  except IOError as e:  print('Could not read:', images[i])  print('error: %s' %e)  print('Skip it!\n')  writer.close() 

二、读取数据,并绘图
# read the data from tfrecoder
def read_and_decode(tfrecords_file):  '''''read and decode tfrecord file, generate (image, label) batches Args: tfrecords_file: the directory of tfrecord file batch_size: number of images in each batch Returns: image: 4D tensor - [batch_size, width, height, channel] label: 1D tensor - [batch_size] '''  # make an input queue from the tfrecord file  filename_queue = tf.train.string_input_producer([tfrecords_file])  reader = tf.TFRecordReader()  _, serialized_example = reader.read(filename_queue)  
#解析读入的样例img_features = tf.parse_single_example(  serialized_example,  features={  'label': tf.FixedLenFeature([], tf.int64),  'image_raw': tf.FixedLenFeature([], tf.string),  })  
#将字符串解析成相应的数组image = tf.decode_raw(img_features['image_raw'], tf.uint8)  
#转化成图片的格式image = tf.reshape(image, [465, 315,3])sess = tf.Session()coord = tf.train.Coordinator()threads = tf.train.start_queue_runners(sess=sess,coord=coord)image , label = sess.run([image,label])print imageplt.imshow(image)plt.show()sess.close()

read_and_decode('/home/tensor/Desktop/tia.tfrecords')


三、结果



这篇关于Tensorflow使用TFRecord构建自己的数据集并读取的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/871610

相关文章

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学

JAVA系统中Spring Boot应用程序的配置文件application.yml使用详解

《JAVA系统中SpringBoot应用程序的配置文件application.yml使用详解》:本文主要介绍JAVA系统中SpringBoot应用程序的配置文件application.yml的... 目录文件路径文件内容解释1. Server 配置2. Spring 配置3. Logging 配置4. Ma

Python MySQL如何通过Binlog获取变更记录恢复数据

《PythonMySQL如何通过Binlog获取变更记录恢复数据》本文介绍了如何使用Python和pymysqlreplication库通过MySQL的二进制日志(Binlog)获取数据库的变更记录... 目录python mysql通过Binlog获取变更记录恢复数据1.安装pymysqlreplicat

Linux使用dd命令来复制和转换数据的操作方法

《Linux使用dd命令来复制和转换数据的操作方法》Linux中的dd命令是一个功能强大的数据复制和转换实用程序,它以较低级别运行,通常用于创建可启动的USB驱动器、克隆磁盘和生成随机数据等任务,本文... 目录简介功能和能力语法常用选项示例用法基础用法创建可启动www.chinasem.cn的 USB 驱动

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

使用SQL语言查询多个Excel表格的操作方法

《使用SQL语言查询多个Excel表格的操作方法》本文介绍了如何使用SQL语言查询多个Excel表格,通过将所有Excel表格放入一个.xlsx文件中,并使用pandas和pandasql库进行读取和... 目录如何用SQL语言查询多个Excel表格如何使用sql查询excel内容1. 简介2. 实现思路3

java脚本使用不同版本jdk的说明介绍

《java脚本使用不同版本jdk的说明介绍》本文介绍了在Java中执行JavaScript脚本的几种方式,包括使用ScriptEngine、Nashorn和GraalVM,ScriptEngine适用... 目录Java脚本使用不同版本jdk的说明1.使用ScriptEngine执行javascript2.

c# checked和unchecked关键字的使用

《c#checked和unchecked关键字的使用》C#中的checked关键字用于启用整数运算的溢出检查,可以捕获并抛出System.OverflowException异常,而unchecked... 目录在 C# 中,checked 关键字用于启用整数运算的溢出检查。默认情况下,C# 的整数运算不会自