表示用於自動調整數據集性能的選項。
用法
tf.data.experimental.AutotuneOptions()
屬性
-
autotune_algorithm
啟用自動調整時(通過autotune
),確定要使用的算法。 -
cpu_budget
啟用自動調整時(通過autotune
),確定要使用的 CPU 預算。允許大於可調度 CPU 內核數的值,但可能會導致 CPU 爭用。如果為 None,則默認為可調度的 CPU 內核數。 -
enabled
是否自動調整性能旋鈕。如果沒有,默認為真。 -
ram_budget
啟用自動調整時(通過autotune
),確定要使用的 RAM 預算。大於可用 RAM(以字節為單位)的值可能會導致 OOM。如果為 None,則默認為可用 RAM 的一半(以字節為單位)。
options = tf.data.Options()
options.autotune.enabled = False
dataset = dataset.with_options(options)
相關用法
- Python tf.data.experimental.RandomDataset.group_by_window用法及代碼示例
- Python tf.data.experimental.SqlDataset.enumerate用法及代碼示例
- Python tf.data.experimental.make_saveable_from_iterator用法及代碼示例
- Python tf.data.experimental.SqlDataset.zip用法及代碼示例
- Python tf.data.experimental.Counter用法及代碼示例
- Python tf.data.experimental.SqlDataset.shard用法及代碼示例
- Python tf.data.experimental.CsvDataset.window用法及代碼示例
- Python tf.data.experimental.RandomDataset.cache用法及代碼示例
- Python tf.data.experimental.SqlDataset.snapshot用法及代碼示例
- Python tf.data.experimental.CsvDataset.apply用法及代碼示例
- Python tf.data.experimental.DatasetInitializer用法及代碼示例
- Python tf.data.experimental.ignore_errors用法及代碼示例
- Python tf.data.experimental.unbatch用法及代碼示例
- Python tf.data.experimental.RandomDataset.map用法及代碼示例
- Python tf.data.experimental.CsvDataset.flat_map用法及代碼示例
- Python tf.data.experimental.assert_cardinality用法及代碼示例
- Python tf.data.experimental.CsvDataset.random用法及代碼示例
- Python tf.data.experimental.save用法及代碼示例
- Python tf.data.experimental.CsvDataset.cardinality用法及代碼示例
- Python tf.data.experimental.CsvDataset.interleave用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.data.experimental.AutotuneOptions。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。