用法
apply(
transformation_func
)
参数
-
transformation_func
一个接受一个Dataset
参数并返回一个Dataset
的函数。
返回
-
Dataset
通过将此数据集应用transformation_func
返回的Dataset
。
将转换函数应用于此数据集。
apply
启用自定义 Dataset
转换的链接,这些转换表示为接受一个 Dataset
参数并返回转换后的 Dataset
的函数。
dataset = tf.data.Dataset.range(100)
def dataset_fn(ds):
return ds.filter(lambda x:x < 5)
dataset = dataset.apply(dataset_fn)
list(dataset.as_numpy_iterator())
[0, 1, 2, 3, 4]
相关用法
- Python tf.compat.v1.data.TextLineDataset.as_numpy_iterator用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.from_tensors用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.filter用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.take_while用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.skip用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.bucket_by_sequence_length用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.sample_from_datasets用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.cardinality用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.zip用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.unbatch用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.with_options用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.random用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.reduce用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.from_generator用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.snapshot用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.cache用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.range用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.rejection_resample用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.unique用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.shard用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.data.TextLineDataset.apply。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。