用法
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.data.Dataset.window用法及代碼示例
- Python tf.data.Dataset.take_while用法及代碼示例
- Python tf.data.Dataset.cardinality用法及代碼示例
- Python tf.data.Dataset.from_tensors用法及代碼示例
- Python tf.data.Dataset.concatenate用法及代碼示例
- Python tf.data.Dataset.unique用法及代碼示例
- Python tf.data.Dataset.cache用法及代碼示例
- Python tf.data.Dataset.unbatch用法及代碼示例
- Python tf.data.Dataset.as_numpy_iterator用法及代碼示例
- Python tf.data.Dataset.random用法及代碼示例
- Python tf.data.Dataset.group_by_window用法及代碼示例
- Python tf.data.Dataset.reduce用法及代碼示例
- Python tf.data.Dataset.map用法及代碼示例
- Python tf.data.Dataset.repeat用法及代碼示例
- Python tf.data.Dataset.bucket_by_sequence_length用法及代碼示例
- Python tf.data.Dataset.get_single_element用法及代碼示例
- Python tf.data.Dataset.flat_map用法及代碼示例
- Python tf.data.Dataset.choose_from_datasets用法及代碼示例
- Python tf.data.Dataset.from_tensor_slices用法及代碼示例
- Python tf.data.Dataset.take用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.data.Dataset.with_options。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。