【发布时间】:2020-01-20 16:07:15
【问题描述】:
我尝试优化我的数据输入管道。 该数据集是一组 450 个 TFRecord 文件,每个文件大小约为 70MB,托管在 GCS 上。 该作业使用 GCP ML Engine 执行。没有 GPU。
这是管道:
def build_dataset(file_pattern):
return tf.data.Dataset.list_files(
file_pattern
).interleave(
tf.data.TFRecordDataset,
num_parallel_calls=tf.data.experimental.AUTOTUNE
).shuffle(
buffer_size=2048
).batch(
batch_size=2048,
drop_remainder=True,
).cache(
).repeat(
).map(
map_func=_parse_example_batch,
num_parallel_calls=tf.data.experimental.AUTOTUNE
).prefetch(
buffer_size=1
)
使用映射函数:
def _bit_to_float(string_batch: tf.Tensor):
return tf.reshape(tf.math.floormod(tf.dtypes.cast(tf.bitwise.right_shift(
tf.expand_dims(tf.io.decode_raw(string_batch, tf.uint8), 2),
tf.reshape(tf.dtypes.cast(tf.range(7, -1, -1), tf.uint8), (1, 1, 8))
), tf.float32), 2), (tf.shape(string_batch)[0], -1))
def _parse_example_batch(example_batch):
preprocessed_sample_columns = {
"features": tf.io.VarLenFeature(tf.float32),
"booleanFeatures": tf.io.FixedLenFeature((), tf.string, ""),
"label": tf.io.FixedLenFeature((), tf.float32, -1)
}
samples = tf.io.parse_example(example_batch, preprocessed_sample_columns)
dense_float = tf.sparse.to_dense(samples["features"])
bits_to_float = _bit_to_float(samples["booleanFeatures"])
return (
tf.concat([dense_float, bits_to_float], 1),
tf.reshape(samples["label"], (-1, 1))
)
我尝试遵循data pipeline tutorial 的最佳实践,并矢量化我的映射函数(按照mrry 的建议)。
使用此设置,虽然数据以高速下载(带宽约为 200MB/s),但 CPU 使用不足 (14%) 且训练速度非常慢(一个 epoch 超过 1 小时)。
我尝试了一些参数配置,更改了interleave() 参数,如num_parallel_calls 或cycle_length 或TFRecordDataset 参数,如num_parallel_calls。
最快的配置使用这组参数:
-
interleave.num_parallel_calls: 1 -
interleave.cycle_length: 8 -
TFRecordDataset.num_parallel_calls: 8
有了这个,一个 epoch 只需要大约 20 分钟即可运行。 但是,CPU 使用率仅为 50%,而带宽消耗约为 55MB/s
问题:
- 如何优化管道以达到 100% 的 CPU 使用率(以及类似 100MB/s 的带宽消耗)?
- 为什么
tf.data.experimental.AUTOTUNE没有找到加速训练的最佳价值?
善良, 亚历克西斯。
编辑
经过更多的实验,我得出了以下解决方案。
- 如果
num_parallel_calls大于0,则删除interleave已由TFRecordDataset处理的步骤。 - 将映射函数更新为只执行
parse_example和decode_raw,返回一个元组`((, ), ()) -
cache在map之后 - 将
_bit_to_float函数作为模型的一个组件移动
最后是数据管道代码:
def build_dataset(file_pattern):
return tf.data.TFRecordDataset(
tf.data.Dataset.list_files(file_pattern),
num_parallel_reads=multiprocessing.cpu_count(),
buffer_size=70*1000*1000
).shuffle(
buffer_size=2048
).map(
map_func=split,
num_parallel_calls=tf.data.experimental.AUTOTUNE
).batch(
batch_size=2048,
drop_remainder=True,
).cache(
).repeat(
).prefetch(
buffer_size=32
)
def split(example):
preprocessed_sample_columns = {
"features": tf.io.VarLenFeature(tf.float32),
"booleanFeatures": tf.io.FixedLenFeature((), tf.string, ""),
"label": tf.io.FixedLenFeature((), tf.float32, -1)
}
samples = tf.io.parse_single_example(example, preprocessed_sample_columns)
dense_float = tf.sparse.to_dense(samples["features"])
bits_to_float = tf.io.decode_raw(samples["booleanFeatures"], tf.uint8)
return (
(dense_float, bits_to_float),
tf.reshape(samples["label"], (1,))
)
def build_model(input_shape):
feature = keras.Input(shape=(N,))
bool_feature = keras.Input(shape=(M,), dtype="uint8")
one_hot = dataset._bit_to_float(bool_feature)
dense_input = tf.reshape(
keras.backend.concatenate([feature, one_hot], 1),
input_shape)
output = actual_model(dense_input)
model = keras.Model([feature, bool_feature], output)
return model
def _bit_to_float(string_batch: tf.Tensor):
return tf.dtypes.cast(tf.reshape(
tf.bitwise.bitwise_and(
tf.bitwise.right_shift(
tf.expand_dims(string_batch, 2),
tf.reshape(
tf.dtypes.cast(tf.range(7, -1, -1), tf.uint8),
(1, 1, 8)
),
),
tf.constant(0x01, dtype=tf.uint8)
),
(tf.shape(string_batch)[0], -1)
), tf.float32)
感谢所有这些优化:
- 带宽消耗约为 90MB/s
- CPU 使用率约为 20%
- 第一个 epoch 花费 20 分钟
- 连续的 epoch 每个花费 5 分钟
所以这似乎是一个很好的第一次设置。但是 CPU 和 BW 仍然没有被过度使用,所以仍然欢迎任何建议!
编辑二
所以,经过一些基准测试后,我发现了我认为我们最好的输入管道:
def build_dataset(file_pattern):
tf.data.Dataset.list_files(
file_pattern
).interleave(
TFRecordDataset,
cycle_length=tf.data.experimental.AUTOTUNE,
num_parallel_calls=tf.data.experimental.AUTOTUNE
).shuffle(
2048
).batch(
batch_size=64,
drop_remainder=True,
).map(
map_func=parse_examples_batch,
num_parallel_calls=tf.data.experimental.AUTOTUNE
).cache(
).prefetch(
tf.data.experimental.AUTOTUNE
)
def parse_examples_batch(examples):
preprocessed_sample_columns = {
"features": tf.io.FixedLenSequenceFeature((), tf.float32, allow_missing=True),
"booleanFeatures": tf.io.FixedLenFeature((), tf.string, ""),
"label": tf.io.FixedLenFeature((), tf.float32, -1)
}
samples = tf.io.parse_example(examples, preprocessed_sample_columns)
bits_to_float = tf.io.decode_raw(samples["booleanFeatures"], tf.uint8)
return (
(samples['features'], bits_to_float),
tf.expand_dims(samples["label"], 1)
)
那么,有什么新鲜事:
- 根据这个GitHub issue,
TFRecordDataset交错是遗留的,所以interleave功能更好。 -
batch在map之前是一个好习惯(vectorizing your function),减少映射函数的调用次数。 - 不再需要
repeat。从 TF2.0 开始,Keras 模型 API 支持数据集 API,可以使用缓存(见SO post) - 从
VarLenFeature切换到FixedLenSequenceFeature,删除对tf.sparse.to_dense的无用调用。
希望这会有所帮助。建议仍然欢迎。
【问题讨论】:
-
感谢您不仅提出了正确的问题,而且还提供了答案。如果可以的话,我会加两个。 :) 编辑:实际上,我只是做了一些 - 我赞成你提到这个的另一个答案。 :)
-
@InnocentBystander 不客气 ^^ 感谢投票,他们也给了我一些徽章!
标签: python python-3.x tensorflow tensorflow-datasets tensorflow2.0