用法
repeat(
count=None, name=None
)
參數
-
count
(可選。)tf.int64
標量tf.Tensor
,表示數據集應重複的次數。默認行為(如果count
是None
或-1
)是無限期重複數據集。 -
name
(可選。) tf.data 操作的名稱。
返回
-
Dataset
一個Dataset
。
重複此數據集,以便看到每個原始值 count
次。
dataset = tf.data.Dataset.from_tensor_slices([1, 2, 3])
dataset = dataset.repeat(3)
list(dataset.as_numpy_iterator())
[1, 2, 3, 1, 2, 3, 1, 2, 3]
注意:如果這個數據集是全局狀態的函數(例如隨機數生成器),那麽不同的重複可能會產生不同的元素。
相關用法
- Python tf.compat.v1.data.TextLineDataset.reduce用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.rejection_resample用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.random用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.range用法及代碼示例
- 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.as_numpy_iterator用法及代碼示例
- 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.from_generator用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.snapshot用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.cache用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.unique用法及代碼示例
- Python tf.compat.v1.data.TextLineDataset.shard用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.data.TextLineDataset.repeat。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。