当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.data.experimental.enumerate_dataset用法及代码示例


枚举数据集元素的转换。 (已弃用)

用法

tf.data.experimental.enumerate_dataset(
    start=0
)

参数

返回

警告:此函数已弃用。它将在未来的版本中删除。更新说明:使用 tf.data.Dataset.enumerate()

它类似于 python 的 enumerate 。例如:

# NOTE:The following examples use `{ ... }` to represent the
# contents of a dataset.
a = { 1, 2, 3 }
b = { (7, 8), (9, 10) }

# The nested structure of the `datasets` argument determines the
# structure of elements in the resulting dataset.
a.apply(tf.data.experimental.enumerate_dataset(start=5))
=> { (5, 1), (6, 2), (7, 3) }
b.apply(tf.data.experimental.enumerate_dataset())
=> { (0, (7, 8)), (1, (9, 10)) }

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.data.experimental.enumerate_dataset。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。