亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用TensorFlow怎么高效的讀取數據

發布時間:2021-06-23 17:17:20 來源:億速云 閱讀:173 作者:Leah 欄目:開發技術

使用TensorFlow怎么高效的讀取數據,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

TFRecords

TFRecords其實是一種二進制文件,雖然它不如其他格式好理解,但是它能更好的利用內存,更方便復制和移動,并且不需要單獨的標簽文件(等會兒就知道為什么了)… …總而言之,這樣的文件格式好處多多,所以讓我們用起來吧。

TFRecords文件包含了tf.train.Example 協議內存塊(protocol buffer)(協議內存塊包含了字段 Features)。我們可以寫一段代碼獲取你的數據, 將數據填入到Example協議內存塊(protocol buffer),將協議內存塊序列化為一個字符串, 并且通過tf.python_io.TFRecordWriter 寫入到TFRecords文件。

從TFRecords文件中讀取數據, 可以使用tf.TFRecordReader的tf.parse_single_example解析器。這個操作可以將Example協議內存塊(protocol buffer)解析為張量。

接下來,讓我們開始讀取數據之旅吧~

生成TFRecords文件

我們使用tf.train.Example來定義我們要填入的數據格式,然后使用tf.python_io.TFRecordWriter來寫入。

import os
import tensorflow as tf 
from PIL import Image

cwd = os.getcwd()

'''
此處我加載的數據目錄如下:
0 -- img1.jpg
   img2.jpg
   img3.jpg
   ...
1 -- img1.jpg
   img2.jpg
   ...
2 -- ...
 這里的0, 1, 2...就是類別,也就是下文中的classes
 classes是我根據自己數據類型定義的一個列表,大家可以根據自己的數據情況靈活運用
...
'''
writer = tf.python_io.TFRecordWriter("train.tfrecords")
for index, name in enumerate(classes):
  class_path = cwd + name + "/"
  for img_name in os.listdir(class_path):
    img_path = class_path + img_name
      img = Image.open(img_path)
      img = img.resize((224, 224))
    img_raw = img.tobytes()       #將圖片轉化為原生bytes
    example = tf.train.Example(features=tf.train.Features(feature={
      "label": tf.train.Feature(int64_list=tf.train.Int64List(value=[index])),
      'img_raw': tf.train.Feature(bytes_list=tf.train.BytesList(value=[img_raw]))
    }))
    writer.write(example.SerializeToString()) #序列化為字符串
writer.close()

關于Example Feature的相關定義和詳細內容,我推薦去官網查看相關API。

基本的,一個Example中包含Features,Features里包含Feature(這里沒s)的字典。最后,Feature里包含有一個 FloatList, 或者ByteList,或者Int64List

就這樣,我們把相關的信息都存到了一個文件中,所以前面才說不用單獨的label文件。而且讀取也很方便。

接下來是一個簡單的讀取小例子:

for serialized_example in tf.python_io.tf_record_iterator("train.tfrecords"):
  example = tf.train.Example()
  example.ParseFromString(serialized_example)

  image = example.features.feature['image'].bytes_list.value
  label = example.features.feature['label'].int64_list.value
  # 可以做一些預處理之類的
  print image, label

使用隊列讀取

一旦生成了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)
  threads = tf.train.start_queue_runners(sess=sess)
  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怎么高效的讀取數據問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临沭县| 偏关县| 秦安县| 顺义区| 务川| 鹤峰县| 长泰县| 昌图县| 区。| 文成县| 大埔区| 修水县| 呈贡县| 容城县| 石台县| 东安县| 哈巴河县| 广灵县| 鄄城县| 湘潭市| 筠连县| 泸西县| 马龙县| 合江县| 桓台县| 尤溪县| 土默特左旗| 彭水| 琼中| 祁阳县| 全南县| 航空| 牟定县| 灵璧县| 宜黄县| 东乡| 泌阳县| 大名县| 南澳县| 且末县| 福鼎市|