用法
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.experimental.SqlDataset.as_numpy_iterator用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.reduce用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.concatenate用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.cardinality用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.padded_batch用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.take用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.interleave用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.shard用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.take_while用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.from_tensors用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.unique用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.cache用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.scan用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.get_single_element用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.prefetch用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.map用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.zip用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.make_initializable_iterator用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.shuffle用法及代碼示例
- Python tf.compat.v1.data.experimental.SqlDataset.bucket_by_sequence_length用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.data.experimental.SqlDataset.apply。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。