Dataset
包含来自一个或多个文本文件的行。
用法
tf.compat.v1.data.TextLineDataset(
filenames, compression_type=None, buffer_size=None, num_parallel_reads=None,
name=None
)
参数
-
filenames
一个tf.data.Dataset
,其元素是tf.string
标量、tf.string
张量或可以转换为tf.string
张量的值(例如 Python 字符串列表)。 -
compression_type
(可选。)tf.string
标量评估为""
(无压缩)、"ZLIB"
或"GZIP"
之一。 -
buffer_size
(可选。)tf.int64
标量,表示要缓冲的字节数。值 0 会导致根据压缩类型选择默认缓冲值。 -
num_parallel_reads
(可选。)tf.int64
标量,表示要并行读取的文件数。如果大于1,则以交错的顺序输出并行读取的文件记录。如果您的输入管道存在 I/O 瓶颈,请考虑将此参数设置为大于 1 的值以并行化 I/O。如果None
,文件将被顺序读取。 -
name
(可选。) tf.data 操作的名称。
属性
-
element_spec
此数据集元素的类型规范。dataset = tf.data.Dataset.from_tensor_slices([1, 2, 3]) dataset.element_spec TensorSpec(shape=(), dtype=tf.int32, name=None)
如需更多信息,请阅读本指南。
-
output_classes
返回此数据集元素的每个组件的类。 (已弃用)警告:此函数已弃用。它将在未来的版本中删除。更新说明:使用
tf.compat.v1.data.get_output_classes(dataset)
。 -
output_shapes
返回此数据集元素的每个组件的形状。 (已弃用)警告:此函数已弃用。它将在未来的版本中删除。更新说明:使用
tf.compat.v1.data.get_output_shapes(dataset)
。 -
output_types
返回此数据集元素的每个组件的类型。 (已弃用)警告:此函数已弃用。它将在未来的版本中删除。更新说明:使用
tf.compat.v1.data.get_output_types(dataset)
。
相关用法
- Python tf.compat.v1.data.TextLineDataset.from_tensors用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.filter用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.take_while用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.skip用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.bucket_by_sequence_length用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.sample_from_datasets用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.cardinality用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.as_numpy_iterator用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.zip用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.unbatch用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.with_options用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.random用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.reduce用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.from_generator用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.snapshot用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.cache用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.range用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.rejection_resample用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.unique用法及代码示例
- Python tf.compat.v1.data.TextLineDataset.shard用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.data.TextLineDataset。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。