用法
with_options(
options, name=None
)
參數
-
options
tf.data.Options
標識使用的選項。 -
name
(可選。) tf.data 操作的名稱。
返回
-
Dataset
帶有給定選項的Dataset
。
拋出
-
ValueError
當一個選項被多次設置為非默認值時
返回具有給定選項集的新 tf.data.Dataset
。
這些選項是"global",因為它們適用於整個數據集。如果選項設置了多次,隻要不同的選項不使用不同的非默認值,它們就會被合並。
ds = tf.data.Dataset.range(5)
ds = ds.interleave(lambda x:tf.data.Dataset.range(5),
cycle_length=3,
num_parallel_calls=3)
options = tf.data.Options()
# This will make the interleave order non-deterministic.
options.deterministic = False
ds = ds.with_options(options)
相關用法
- Python tf.compat.v1.data.TextLineDataset.window用法及代碼示例
- 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.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.with_options。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。