用法
take(
count, name=None
)
参数
-
count
一个tf.int64
标量tf.Tensor
,表示该数据集的元素数,应用于生成新数据集。如果count
为-1,或者count
大于此数据集的大小,则新数据集将包含此数据集的所有元素。 -
name
(可选。) tf.data 操作的名称。
返回
-
Dataset
一个Dataset
。
从该数据集中创建一个最多包含 count
元素的 Dataset
。
dataset = tf.data.Dataset.range(10)
dataset = dataset.take(3)
list(dataset.as_numpy_iterator())
[0, 1, 2]
相关用法
- Python tf.compat.v1.data.experimental.SqlDataset.take_while用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.reduce用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.as_numpy_iterator用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.concatenate用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.cardinality用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.padded_batch用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.interleave用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.shard用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.from_tensors用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.unique用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.cache用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.scan用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.get_single_element用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.prefetch用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.map用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.zip用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.make_initializable_iterator用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.shuffle用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.bucket_by_sequence_length用法及代码示例
- Python tf.compat.v1.data.experimental.SqlDataset.snapshot用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.data.experimental.SqlDataset.take。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。