1 回答
TA贡献1824条经验 获得超8个赞
4 - 这些顺序调用的事情是,它们简化了我们操作数据集以应用转换的工作,并且他们还声称这是一种加载和处理数据的更具性能的方式。关于模块化/简单性,我猜它完成了它的工作,因为您可以轻松加载、将其传递给整个预处理管道、随机播放并使用几行代码迭代批量数据。
train_dataset =tf.data.TFRecordDataset(filenames=train_records_paths).map(parsing_fn)
train_dataset = train_dataset.shuffle(buffer_size=12000)
train_dataset = train_dataset.batch(batch_size)
train_dataset = train_dataset.repeat()
# Create a test dataset
test_dataset = tf.data.TFRecordDataset(filenames=test_records_paths).map(parsing_fn)
test_dataset = test_dataset.batch(batch_size)
test_dataset = test_dataset.repeat(1)
#
validation_steps = test_size / batch_size
history = transferred_resnet50.fit(x=train_dataset,
epochs=epochs,
steps_per_epoch=steps_per_epoch,
validation_data=test_dataset,
validation_steps=validation_steps)
例如,为了加载我的数据集并为我的模型提供预处理数据,这就是我所要做的。
3 - 他们定义了一个预处理函数,他们的数据集被映射到,这意味着每次请求样本时都会应用映射函数,就像在我的情况下,我使用解析函数来解析我的使用前 TFRecord 格式的数据:
def parsing_fn(serialized):
features = \
{
'image': tf.io.FixedLenFeature([], tf.string),
'label': tf.io.FixedLenFeature([], tf.int64)
}
# Parse the serialized data so we get a dict with our data.
parsed_example = tf.io.parse_single_example(serialized=serialized,
features=features)
# Get the image as raw bytes.
image_raw = parsed_example['image']
# Decode the raw bytes so it becomes a tensor with type.
image = tf.io.decode_jpeg(image_raw)
image = tf.image.resize(image,size=[224,224])
# Get the label associated with the image.
label = parsed_example['label']
# The image and label are now correct TensorFlow types.
return image, label
(另一个例子) - 从上面的解析函数,我可以使用下面的代码来创建一个数据集,遍历我的测试集图像并绘制它们。
records_path = DATA_DIR+'/'+'TFRecords'+'/test/'+'test_0.tfrecord'
# Create a dataset
dataset = tf.data.TFRecordDataset(filenames=records_path)
# Parse the dataset using a parsing function
parsed_dataset = dataset.map(parsing_fn)
# Gets a sample from the iterator
iterator = tf.compat.v1.data.make_one_shot_iterator(parsed_dataset)
for i in range(100):
image,label = iterator.get_next()
img_array = image.numpy()
img_array = img_array.astype(np.uint8)
plt.imshow(img_array)
plt.show()
添加回答
举报