關於Tensorflow讀取數據,官網給出了三種方法:python
對於數據量較小而言,可能通常選擇直接將數據加載進內存,而後再分batch輸入網絡進行訓練(tip:使用這種方法時,結合yield 使用更爲簡潔,你們本身嘗試一下吧,我就不贅述了)。可是,若是數據量較大,這樣的方法就不適用了,由於太耗內存,因此這時最好使用tensorflow提供的隊列queue,也就是第二種方法 從文件讀取數據。對於一些特定的讀取,好比csv文件格式,官網有相關的描述,在這兒我介紹一種比較通用,高效的讀取方法(官網介紹的少),即便用tensorflow內定標準格式——TFRecords網絡
TFRecords
TFRecords實際上是一種二進制文件,雖然它不如其餘格式好理解,可是它能更好的利用內存,更方便複製和移動,而且不須要單獨的標籤文件。函數
TFRecords文件包含了tf.train.Example 協議內存塊(protocol buffer)(協議內存塊包含了字段 Features)。咱們能夠寫一段代碼獲取你的數據, 將數據填入到Example協議內存塊(protocol buffer),將協議內存塊序列化爲一個字符串, 而且經過tf.python_io.TFRecordWriter 寫入到TFRecords文件。ui
從TFRecords文件中讀取數據, 可使用tf.TFRecordReader的tf.parse_single_example解析器。這個操做能夠將Example協議內存塊(protocol buffer)解析爲張量。spa
存入TFRecords文件須要數據先存入名爲example的protocol buffer,而後將其serialize成爲string才能寫入。example中包含features,用於描述數據類型:bytes,float,int64。.net
咱們使用tf.train.Example
來定義咱們要填入的數據格式,而後使用tf.python_io.TFRecordWriter
來寫入。線程
writer = tf.python_io.TFRecordWriter(out_name) #對每條數據分別得到文檔,問題,答案三個值,並將相應單詞轉化爲索引 #調用Example和Features函數將數據格式化保存起來。注意Features傳入的參數應該是一個字典,方便後續讀數據時的操做 example = tf.train.Example( features = tf.train.Features( feature = { 'document': tf.train.Feature( int64_list=tf.train.Int64List(value=document)), 'query': tf.train.Feature( int64_list=tf.train.Int64List(value=query)), 'answer': tf.train.Feature( int64_list=tf.train.Int64List(value=answer)) })) #寫數據 serialized = example.SerializeToString() writer.write(serialized)
也能夠用extend的方式:code
example = tf.train.Example() example.features.feature["context"].int64_list.value.extend(context_transformed)
example.features.feature["utterance"].int64_list.value.extend(utterance_transformed) example.features.feature["context_len"].int64_list.value.extend([context_len]) example.features.feature["utterance_len"].int64_list.value.extend([utterance_len]) writer = tf.python_io.TFRecordWriter(output_filename) writer.write(example.SerializeToString()) writer.close()
讀取tfrecords文件orm
首先用tf.train.string_input_producer
讀取tfrecords文件的list創建FIFO序列,能夠申明num_epoches和shuffle參數表示須要讀取數據的次數以及時候將tfrecords文件讀入順序打亂,而後定義TFRecordReader讀取上面的序列返回下一個record,用tf.parse_single_example
對讀取到TFRecords文件進行解碼,根據保存的serialize example和feature字典返回feature所對應的值。此時得到的值都是string,須要進一步解碼爲所需的數據類型。把圖像數據的string reshape成原始圖像後能夠進行preprocessing操做。此外,還能夠經過tf.train.batch
或者tf.train.shuffle_batch
將圖像生成batch序列。blog
因爲tf.train
函數會在graph中增長tf.train.QueueRunner
類,而這些類有一系列的enqueue選項使一個隊列在一個線程裏運行。爲了填充隊列就須要用tf.train.start_queue_runners
來爲全部graph中的queue runner啓動線程,而爲了管理這些線程就須要一個tf.train.Coordinator
來在合適的時候終止這些線程。
由於在讀取數據以後咱們可能還會進行一些額外的操做,使咱們的數據格式知足模型輸入,因此這裏會引入一些額外的函數來實現咱們的目的。這裏介紹幾個我的感受較重要經常使用的函數。不過仍是推薦到官網API去查,或者有某種需求的時候到Stack Overflow上面搜一搜,通常都能找到知足本身需求的函數。
1,string_input_producer(
string_tensor,
num_epochs=None,
shuffle=True,
seed=None,
capacity=32,
shared_name=None,
name=None,
cancel_op=None
)
其輸出是一個輸入管道的隊列,這裏須要注意的參數是num_epochs和shuffle。對於每一個epoch其會將全部的文件添加到文件隊列當中,若是設置shuffle,則會對文件順序進行打亂。其對文件進行均勻採樣,而不會致使上下采樣。
2,shuffle_batch(
tensors,
batch_size,
capacity,
min_after_dequeue,
num_threads=1,
seed=None,
enqueue_many=False,
shapes=None,
allow_smaller_final_batch=False,
shared_name=None,
name=None
)
產生隨機打亂以後的batch數據
3,sparse_ops.serialize_sparse(sp_input, name=None): 返回一個字符串的3-vector(1-D的tensor),分別表示索引、值、shape
4,deserialize_many_sparse(serialized_sparse, dtype, rank=None, name=None): 將多個稀疏的serialized_sparse合併成一個
基本的,一個Example中包含Features,Features裏包含Feature(這裏沒s)的字典。最後,Feature裏包含有一個 FloatList, 或者ByteList,或者Int64List
就這樣,咱們把相關的信息都存到了一個文件中,並且讀取也很方便。
簡單的讀取小例子
for serialized_example in tf.python_io.tf_record_iterator("train.tfrecords"): example = tf.train.Example() example.ParseFromString(serialized_example) context = example.features.feature['context'].int64_list.value utterance = example.features.feature['utterance'].int64_list.value
一旦生成了TFRecords文件,爲了高效地讀取數據,TF中使用隊列(queue
)讀取數據。
def read_and_decode(filename): #根據文件名生成一個隊列 filename_queue = tf.train.string_input_producer([filename]) reader = tf.TFRecordReader() _, serialized_example = reader.read(filename_queue) #返回文件名和文件 features = tf.parse_single_example(serialized_example, features={ 'label': tf.FixedLenFeature([], tf.int64), 'img_raw' : tf.FixedLenFeature([], tf.string), }) img = tf.decode_raw(features['img_raw'], tf.uint8) img = tf.reshape(img, [224, 224, 3]) img = tf.cast(img, tf.float32) * (1. / 255) - 0.5 label = tf.cast(features['label'], tf.int32) return img, label
以後咱們能夠在訓練的時候這樣使用
img, label = read_and_decode("train.tfrecords") #使用shuffle_batch能夠隨機打亂輸入 img_batch, label_batch = tf.train.shuffle_batch([img, label], batch_size=30, capacity=2000, min_after_dequeue=1000) init = tf.initialize_all_variables() with tf.Session() as sess: sess.run(init)
# 這是填充隊列的指令,若是不執行程序會等在隊列文件的讀取處沒法運行 coord = tf.train.Coordinator() threads = tf.train.start_queue_runners(sess=sess, coord=coord)
for i in range(3): val, l= sess.run([img_batch, label_batch]) #咱們也能夠根據須要對val, l進行處理 #l = to_categorical(l, 12) print(val.shape, l)
注意:
第一,tensorflow裏的graph可以記住狀態(state),這使得TFRecordReader可以記住tfrecord的位置,而且始終能返回下一個。而這就要求咱們在使用以前,必須初始化整個graph,這裏咱們使用了函數tf.initialize_all_variables()來進行初始化。
第二,tensorflow中的隊列和普通的隊列差很少,不過它裏面的operation和tensor都是符號型的(symbolic),在調用sess.run()時才執行。
第三, TFRecordReader會一直彈出隊列中文件的名字,直到隊列爲空。
record reader
解析tfrecord文件batcher
)QueueRunner
參考:
https://blog.csdn.net/u012759136/article/details/52232266
https://blog.csdn.net/liuchonge/article/details/73649251