用法
skip(
count, name=None
)
參數
-
count
一個tf.int64
標量tf.Tensor
,表示應跳過此數據集以形成新數據集的元素數。如果count
大於此數據集的大小,則新數據集將不包含任何元素。如果count
為 -1,則跳過整個數據集。 -
name
(可選。) tf.data 操作的名稱。
返回
-
Dataset
一個Dataset
。
創建一個 Dataset
跳過此數據集中的 count
元素。
dataset = tf.data.Dataset.range(10)
dataset = dataset.skip(7)
list(dataset.as_numpy_iterator())
[7, 8, 9]
相關用法
- Python tf.data.TextLineDataset.scan用法及代碼示例
- Python tf.data.TextLineDataset.sample_from_datasets用法及代碼示例
- Python tf.data.TextLineDataset.snapshot用法及代碼示例
- Python tf.data.TextLineDataset.shuffle用法及代碼示例
- Python tf.data.TextLineDataset.shard用法及代碼示例
- Python tf.data.TextLineDataset.reduce用法及代碼示例
- Python tf.data.TextLineDataset.with_options用法及代碼示例
- Python tf.data.TextLineDataset.as_numpy_iterator用法及代碼示例
- Python tf.data.TextLineDataset.random用法及代碼示例
- Python tf.data.TextLineDataset.take_while用法及代碼示例
- Python tf.data.TextLineDataset.from_tensor_slices用法及代碼示例
- Python tf.data.TextLineDataset.take用法及代碼示例
- Python tf.data.TextLineDataset.apply用法及代碼示例
- Python tf.data.TextLineDataset.batch用法及代碼示例
- Python tf.data.TextLineDataset.from_generator用法及代碼示例
- Python tf.data.TextLineDataset.padded_batch用法及代碼示例
- Python tf.data.TextLineDataset.concatenate用法及代碼示例
- Python tf.data.TextLineDataset.window用法及代碼示例
- Python tf.data.TextLineDataset.get_single_element用法及代碼示例
- Python tf.data.TextLineDataset.interleave用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.data.TextLineDataset.skip。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。