用法
@staticmethod
random(
seed=None, name=None
)
参数
-
seed
(可选)如果指定,数据集会生成确定的值序列。 -
name
(可选。) tf.data 操作的名称。
返回
-
Dataset
一个Dataset
。
创建 Dataset
的伪随机值。
数据集生成一系列均匀分布的整数值。
ds1 = tf.data.Dataset.random(seed=4).take(10)
ds2 = tf.data.Dataset.random(seed=4).take(10)
print(list(ds2.as_numpy_iterator())==list(ds2.as_numpy_iterator()))
True
相关用法
- Python tf.data.TextLineDataset.range用法及代码示例
- Python tf.data.TextLineDataset.reduce用法及代码示例
- Python tf.data.TextLineDataset.rejection_resample用法及代码示例
- Python tf.data.TextLineDataset.repeat用法及代码示例
- Python tf.data.TextLineDataset.with_options用法及代码示例
- Python tf.data.TextLineDataset.as_numpy_iterator用法及代码示例
- Python tf.data.TextLineDataset.take_while用法及代码示例
- Python tf.data.TextLineDataset.from_tensor_slices用法及代码示例
- Python tf.data.TextLineDataset.take用法及代码示例
- Python tf.data.TextLineDataset.apply用法及代码示例
- Python tf.data.TextLineDataset.batch用法及代码示例
- Python tf.data.TextLineDataset.skip用法及代码示例
- Python tf.data.TextLineDataset.from_generator用法及代码示例
- Python tf.data.TextLineDataset.padded_batch用法及代码示例
- Python tf.data.TextLineDataset.concatenate用法及代码示例
- Python tf.data.TextLineDataset.window用法及代码示例
- Python tf.data.TextLineDataset.get_single_element用法及代码示例
- Python tf.data.TextLineDataset.interleave用法及代码示例
- Python tf.data.TextLineDataset.scan用法及代码示例
- Python tf.data.TextLineDataset.bucket_by_sequence_length用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.data.TextLineDataset.random。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。