久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

讀取tf.record 10-11

 木俊 2018-09-14
import tensorflow as tf
import cv2

filename = "train.tfrecords"
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),
'image' : tf.FixedLenFeature([], tf.string),
})

img = tf.decode_raw(features['image'], tf.uint8)
img = tf.reshape(img, [300, 300,3])
#notice shape應(yīng)該保持一致

img = tf.cast(img, tf.float32) * (1. / 128) - 0.5
label = tf.cast(features['label'], tf.int32)

///////////////////////////////////////////
函數(shù)封裝
///////////////////////////////////////////
import tensorflow as tf
import cv2
def read_decode(filename):
#filename = "train.tfrecords"
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),
'image' : tf.FixedLenFeature([], tf.string),
})

img = tf.decode_raw(features['image'], tf.uint8)
img = tf.reshape(img, [500, 500,3])

img = tf.cast(img, tf.float32) * (1. / 128) - 0.5
label = tf.cast(features['label'], tf.int32)
return img,label
//////////////////////////////////////////////////
使用案例
//////////////////////////////////////////////////
import tensorflow as tf
import cv2
import aaa

filename = "train.tfrecords"
img,label = aaa.read_decode(filename)

img_batch,label_batch = tf.train.shuffle_batch([img,label],batch_size=1,
capacity=10,
min_after_dequeue=1)

init = tf.global_variables_initializer()
sess = tf.Session()
sess.run(init)
threads = tf.train.start_queue_runners(sess=sess)
for _ in range(10):
val = sess.run(img_batch)
label = sess.run(label_batch)
val.resize((500,500,3))
cv2.imshow("cool",val)
print(label)
////////////////////////////////////////////////////////////

1

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多