TensorFlow文本文件行的數(shù)據(jù)集

2018-04-26 10:21 更新

tf.contrib.data.TextLineDataset

繼承自: Dataset

定義在:tensorflow/contrib/data/python/ops/dataset_ops.py.

一個(gè)包含來自一個(gè)或多個(gè)文本文件的行的數(shù)據(jù)集.

屬性

  • output_shapes
  • output_types

方法

__init__

__init__(
    filenames,
    compression_type=None
)

創(chuàng)建一個(gè) TextLineDataset.

ARGS:

  • filenames:一個(gè) tf.string 張量包含一個(gè)或多個(gè)文件名.
  • compression_type:一個(gè)字符串,是:"" (no compression),"ZLIB",或"GZIP"中的一個(gè).

batch

batch(batch_size)

將此數(shù)據(jù)集的連續(xù)元素組合成批處理.

ARGS:

  • batch_size:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示此數(shù)據(jù)集的連續(xù)元素在單個(gè)批處理中合并的數(shù)量.

返回:

返回一個(gè) Dataset.

cache

cache(filename = '')

緩存這個(gè)數(shù)據(jù)集中的元素.

ARGS:

  • filename:一個(gè) tf.string 的標(biāo)量 tf.Tensor,表示文件系統(tǒng)中用于緩存此數(shù)據(jù)集中的張量的目錄的名稱.如果未提供文件名,則數(shù)據(jù)集將緩存在內(nèi)存中.

返回:

返回一個(gè) Dataset.

concatenate

concatenate(dataset)

通過將給定的數(shù)據(jù)集與此數(shù)據(jù)集連接來創(chuàng)建數(shù)據(jù)集.

# NOTE: The following examples use `{ ... }` to represent the
# contents of a dataset.
a = { 1, 2, 3 }
b = { 4, 5, 6, 7 }

# Input dataset and dataset to be concatenated should have same
# nested structures and output types.
# c = { (8, 9), (10, 11), (12, 13) }
# d = { 14.0, 15.0, 16.0 }
# a.concatenate(c) and a.concatenate(d) would result in error.

a.concatenate(b) == { 1, 2, 3, 4, 5, 6, 7 }

ARGS:

  • dataset:要連接的數(shù)據(jù)集.

返回:

返回一個(gè) Dataset.

dense_to_sparse_batch

dense_to_sparse_batch(
    batch_size,
    row_shape
)

將這個(gè)數(shù)據(jù)集的不規(guī)則元素批量放入到 tf.SparseTensors.

與 Dataset.padded_batch() 一樣,此方法將此數(shù)據(jù)集的多個(gè)連續(xù)元素 (可能具有不同的形狀) 合并到單個(gè)元素中.生成的元素有三個(gè)組件 (索引、值和 dense_shape),其中包括一個(gè) tf.SparseTensor 表示相同數(shù)據(jù)的組件.row_shape 表示生成的 tf.SparseTensor 中每一行的稠密形狀,其中有效批量大小被前置.例如:

# 注意:以下示例使用 `{ ... }`來表示數(shù)據(jù)集的內(nèi)容
a = { ['a', 'b', 'c'], ['a', 'b'], ['a', 'b', 'c', 'd'] }

a.dense_to_sparse_batch(batch_size=2, row_shape=[6]) == {
    ([[0, 0], [0, 1], [0, 2], [1, 0], [1, 1]],  # indices
     ['a', 'b', 'c', 'a', 'b'],                 # values
     [2, 6]),                                   # dense_shape
    ([[2, 0], [2, 1], [2, 2], [2, 3]],
     ['a', 'b', 'c', 'd'],
     [1, 6])
}

ARGS:

  • batch_size:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示此數(shù)據(jù)集的連續(xù)元素在單個(gè)批處理中合并的數(shù)量.
  • row_shape:一個(gè) tf.TensorShape 或 tf.int64 向量張量樣對(duì)象,表示在所產(chǎn)生 tf.SparseTensor 的行的等效稠密形狀.此數(shù)據(jù)集的每個(gè)元素必須具有與row_shape 相同的秩,并且在每個(gè)維度中必須具有小于或等于 row_shape 的大小.

返回:

返回一個(gè) Dataset.

enumerate

enumerate(start=0)

枚舉此數(shù)據(jù)集的元素.類似于 python 的枚舉.

例如:

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

# The nested structure of the `datasets` argument determines the
# structure of elements in the resulting dataset.
a.enumerate(start=5) == { (5, 1), (6, 2), (7, 3) }
b.enumerate() == { (0, (7, 8)), (1, (9, 10)), (2, (11, 12)) }

ARGS:

  • start:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示枚舉的起始值.

返回:

返回一個(gè) Dataset.

filter

filter(predicate)

根據(jù)這個(gè)數(shù)據(jù)集過濾predicate.

ARGS:

  • predicate:一個(gè)函數(shù),用于映射張量的嵌套結(jié)構(gòu)(具有由 self.output_shapes 和 self.output_types 定義的形狀和類型)到標(biāo)量 tf.bool 的張量.

返回:

返回一個(gè) Dataset.

flat_map

flat_map(map_func)

將 map_func 映射到這個(gè)數(shù)據(jù)集并拼合結(jié)果.

ARGS:

  • map_func:一個(gè)函數(shù),映射張量的嵌套結(jié)構(gòu)(具有由 self.output_shapes 和 self.output_types 定義的形狀和類型)到數(shù)據(jù)集.

返回:

返回一個(gè) Dataset.

from_sparse_tensor_slices

from_sparse_tensor_slices ( sparse_tensor )

在此數(shù)據(jù)集中逐行分割每個(gè)秩為 N 的 tf.SparseTensor .

ARGS:

  • sparse_tensor:一個(gè) tf.SparseTensor.

返回:

返回秩為 (N-1) 稀疏張量的數(shù)據(jù)集.

from_tensor_slices

from_tensor_slices (tensors) 

創(chuàng)建一個(gè)數(shù)據(jù)集,其元素是給定張量的片段.

ARGS:

  • tensors:張量的一種嵌套結(jié)構(gòu),在第0維度中各有相同的大小.

返回:

返回一個(gè) Dataset.

from_tensors

from_tensors(tensors)

創(chuàng)建一個(gè)包含給定張量的單個(gè)元素的數(shù)據(jù)集.

ARGS:

  • tensors:張量的嵌套結(jié)構(gòu).

返回:

返回一個(gè) Dataset.

group_by_window

group_by_window(
    key_func,
    reduce_func,
    window_size
)

對(duì)此數(shù)據(jù)集執(zhí)行窗口化的“group-by”操作.

此方法將此數(shù)據(jù)集中的每個(gè)連續(xù)元素映射到使用 key_func 的鍵,并按鍵對(duì)元素進(jìn)行分組.然后,它將 reduce_func 應(yīng)用于與同一密鑰匹配的大多數(shù) window_size 元素.每個(gè)鍵的所有窗口(除了最后一個(gè))將包含 window_size 元素;最后的窗口可能較小.

ARGS:

  • key_func:一個(gè)函數(shù),用于映射張量的嵌套結(jié)構(gòu)(具有由 self.output_shapes 和 self.output_types 定義的形狀和類型)到標(biāo)量 tf.int64 張量.
  • reduce_func:將 batch_size 匹配該鍵的連續(xù)元素的鍵和數(shù)據(jù)集映射到另一個(gè)數(shù)據(jù)集的函數(shù).
  • window_size:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示與同一密鑰相匹配的連續(xù)元素的個(gè)數(shù),將其合并到單個(gè)批處理中,并將其傳遞給 reduce_func.

返回:

返回一個(gè) Dataset.

ignore_errors

ignore_errors ()

從此項(xiàng)創(chuàng)建數(shù)據(jù)集, 并默默忽略任何錯(cuò)誤.

使用此轉(zhuǎn)換可以生成包含與輸入相同元素的數(shù)據(jù)集, 但會(huì)默默地丟棄導(dǎo)致錯(cuò)誤的任何元素.例如:

dataset = tf.contrib.data.Dataset.from_tensor_slices([1., 2., 0., 4.])

# Computing `tf.check_numerics(1. / 0.)` will raise an InvalidArgumentError.
dataset = dataset.map(lambda x: tf.check_numerics(1. / x, "error"))

# Using `ignore_errors()` will drop the element that causes an error.
dataset = dataset.ignore_errors()  # ==> { 1., 0.5, 0.2 }

返回:

返回一個(gè) Dataset.

interleave

interleave ( 
    map_func , 
    cycle_length , 
    block_length = 1 
) 

將 map_func 映射到這個(gè)數(shù)據(jù)集,并對(duì)結(jié)果進(jìn)行交織.

例如,您可以使用 Dataset.interleave() 同時(shí)處理多個(gè)輸入文件:

# Preprocess 4 files concurrently, and interleave blocks of 16 records from
# each file.
filenames = ["/var/data/file1.txt", "/var/data/file2.txt", ..."]
dataset = (Dataset.from_tensor_slices(filenames)
           .interleave(
               lambda x: TextLineDataset(x).map(parse_fn, num_threads=1),
               cycle_length=4, block_length=16))

cycle_length 和 block_length 參數(shù)元素的生成順序.cycle_length 控制并發(fā)處理的輸入元素的數(shù)量.如果將cycle_length 設(shè)置為1,則此轉(zhuǎn)換將一次處理一個(gè)輸入元素,并將產(chǎn)生與 tf.contrib.data.Dataset.flat_map 相同的結(jié)果.一般來說,這種轉(zhuǎn)換將應(yīng)用 map_func 到 cycle_length 的輸入元素,在返回的 Dataset 對(duì)象上打開迭代器,并循環(huán)通過它們生成每個(gè)迭代器的 block_length 連續(xù)元素,并在每次到達(dá)迭代器結(jié)束時(shí)使用下一個(gè)輸入元素.

例如:

# 注意: 以下示例使用 `{ ... }` 來表示數(shù)據(jù)集的內(nèi)容.
a = { 1, 2, 3, 4, 5 }

# NOTE: New lines indicate "block" boundaries.
a.interleave(lambda x: Dataset.from_tensors(x).repeat(6),
             cycle_length=2, block_length=4) == {
    1, 1, 1, 1,
    2, 2, 2, 2,
    1, 1,
    2, 2,
    3, 3, 3, 3,
    4, 4, 4, 4,
    3, 3,
    4, 4,
    5, 5, 5, 5,
    5, 5,
}

ARGS:

  • map_func:一個(gè)函數(shù),映射張量嵌套結(jié)構(gòu)(具有由 self.output_shapes 和 self.output_types 定義的形狀和類型)到一個(gè) Dataset.
  • cycle_length:此數(shù)據(jù)集中的元素?cái)?shù), 將同時(shí)處理.
  • block_length:在循環(huán)到另一個(gè)輸入元素之前,從每個(gè)輸入元素生成的連續(xù)元素的數(shù)量.

返回:

返回一個(gè) Dataset.

list_files

list_files ( file_pattern )

與模式匹配的所有文件的數(shù)據(jù)集.

示例:如果我們的文件系統(tǒng)上有以下文件: "- /path/to/dir/a.txt - /path/to/dir/b.py - /path/to/dir/c.py" 如果我們傳遞 “/ path / to / dir / *.py“ 作為目錄,數(shù)據(jù)集將產(chǎn)生:" - /path/to/dir/b.py - /path/to/dir/c.py"

ARGS:

  • file_pattern:一個(gè)字符串或標(biāo)量字符串 tf.Tensor,表示將匹配的文件名模式.

返回:

與文件名相對(duì)應(yīng)的字符串的數(shù)據(jù)集.

make_dataset_resource

make_dataset_resource ()

make_initializable_iterator

make_initializable_iterator(shared_name=None)

創(chuàng)建用于枚舉此數(shù)據(jù)集的元素的迭代器.

返回的迭代器將處于未初始化狀態(tài), 您必須先運(yùn)行 iterator.initializer 操作,然后再使用它.

ARGS:

  • shared_name:(可選)如果為非空, 則此迭代器將在共享相同設(shè)備的多個(gè)會(huì)話 (例如, 使用遠(yuǎn)程服務(wù)器時(shí)) 的給定名稱下共享.

返回:

此數(shù)據(jù)集的元素上的迭代器.

make_one_shot_iterator

make_one_shot_iterator ()

創(chuàng)建用于枚舉此數(shù)據(jù)集的元素的迭代器.

返回的迭代器將自動(dòng)初始化."one-shot" 迭代器當(dāng)前不支持重新初始化.

返回:

此數(shù)據(jù)集的元素上的迭代器.

map

map ( 
    map_func , 
    num_threads = None , 
    output_buffer_size = None
 )

將 map_func 映射到這個(gè)數(shù)據(jù)集.

ARGS:

  • map_func:一個(gè)函數(shù),映射張量的嵌套結(jié)構(gòu)(具有由 self.output_shapes 和 self.output_types 定義的形狀和類型)到另一個(gè)張量的嵌套結(jié)構(gòu).
  • num_threads:(可選)一個(gè) tf.int32 的標(biāo)量 tf.Tensor,表示用于并行處理元素的線程數(shù).如果未指定,元素將被順序處理而不進(jìn)行緩沖.
  • output_buffer_size:(可選)一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示在并行處理時(shí)將緩沖的已處理元素的最大數(shù)量.

返回:

返回一個(gè) Dataset.

padded_batch

padded_batch ( 
    batch_size , 
    padded_shapes , 
    padding_values = None
 )

將此數(shù)據(jù)集的連續(xù)元素合并為填充的批處理.

與數(shù)據(jù)集 dense_to_sparse_batch () 一樣, 此方法將此數(shù)據(jù)集的多個(gè)連續(xù)元素 (可能具有不同的形狀) 合并到單個(gè)元素中.結(jié)果元素中的張量有一個(gè)額外的外部維度, 并填充到 padded_shapes 中的相應(yīng)形狀.

ARGS:

  • batch_size:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示在單個(gè)批次中組合的此數(shù)據(jù)集的連續(xù)元素的數(shù)量.
  • padded_shapes:表示每個(gè)輸入元素的各個(gè)組件在批量之前應(yīng)填充的形狀的嵌套結(jié)構(gòu) tf.TensorShape 或 tf.int64 向量張量樣對(duì)象.任何未知的維度(例如,tf.Dimension(None)在一個(gè) tf.TensorShape 或-1類似張量的對(duì)象中)將被填充到每個(gè)批次中該維度的最大尺寸.
  • padding_values:(可選)標(biāo)量形狀的 tf.Tensor 的嵌套結(jié)構(gòu),表示用于各個(gè)組件的填充值.對(duì)于數(shù)字類型, 默認(rèn)值為 0, 字符串類型為空字符串.

返回:

返回一個(gè) Dataset.

range

range(*args)

創(chuàng)建一個(gè)分步分隔的值范圍的數(shù)據(jù)集.

例如:

Dataset.range(5) == [0, 1, 2, 3, 4]
Dataset.range(2, 5) == [2, 3, 4]
Dataset.range(1, 5, 2) == [1, 3]
Dataset.range(1, 5, -2) == []
Dataset.range(5, 1) == []
Dataset.range(5, 1, -2) == [5, 3]

ARGS:

* args:遵循與 python 的 xrange 相同的語義.len(args)== 1 - > start = 0,stop = args [0],step = 1 len(args)== 2 - > start = args [0],stop = args [1],step = 1 len (args)== 3 - > start = args [0],stop = args [1,stop = args [2]

返回:

返回一個(gè) RangeDataset.

注意:

  • ValueError:如果 len(args)== 0.

read_batch_features

read_batch_features ( 
    file_pattern , 
    batch_size , 
    features , 
    reader , 
    reader_args = None , 
    randomize_input = True , 
    num_epochs = None , 
    capacity = 10000 
)

讀取批次的示例.

ARGS:

  • file_pattern:字符串模式或帶有文件名列表的占位符.
  • batch_size:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示此數(shù)據(jù)集的連續(xù)元素在單個(gè)批處理中合并的數(shù)量.
  • features:字典映射功能鍵 FixedLenFeature 或 VarLenFeature 值.見 tf. parse_example.
  • reader:可以用文件名張量和 (可選) reader_args 調(diào)用的函數(shù)或類,并返回序列化示例的數(shù)據(jù)集.
  • reader_args:要傳遞給讀取器類的其他參數(shù).
  • randomize_input:輸入是否應(yīng)該是隨機(jī)的.
  • num_epochs:整數(shù),指定通過數(shù)據(jù)集讀取的次數(shù).如果沒有,則永遠(yuǎn)循環(huán)遍歷數(shù)據(jù)集.
  • capacity:ShuffleDataset 的容量.

返回:

返回一個(gè) Dataset.

repeat

repeat(count=None)

重復(fù)此數(shù)據(jù)集的 count 次數(shù).

ARGS:

  • count:(可選)一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示應(yīng)該重復(fù)此數(shù)據(jù)集的元素的次數(shù).默認(rèn)行為(如果 count 是 None 或 -1)是為了無限期地重復(fù)這些元素.

返回:

返回一個(gè) Dataset.

shuffle

shuffle(
    buffer_size,
    seed=None
)

隨機(jī)地打亂此數(shù)據(jù)集的元素.

ARGS:

  • buffer_size:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示新數(shù)據(jù)集將從該數(shù)據(jù)集中取樣的元素?cái)?shù).
  • seed:(可選)一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示將用于創(chuàng)建分布的隨機(jī)種子.見 tf. set_random_seed 的行為.

返回:

返回一個(gè) Dataset.

skip

skip(count)

創(chuàng)建一個(gè)從該數(shù)據(jù)集中跳過計(jì)數(shù)元素的數(shù)據(jù)集.

ARGS:

  • count:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示應(yīng)跳過的此數(shù)據(jù)集的元素?cái)?shù),以形成新的數(shù)據(jù)集.如果 count 大于此數(shù)據(jù)集的大小,則新數(shù)據(jù)集將不包含任何元素.如果計(jì)數(shù)為-1,則跳過整個(gè)數(shù)據(jù)集.

返回:

返回一個(gè) Dataset.

take

take(count)

使用此數(shù)據(jù)集中的最多的 count 元素創(chuàng)建數(shù)據(jù)集.

ARGS:

  • count:一個(gè) tf.int64 的標(biāo)量 tf.Tensor,表示應(yīng)用于形成新數(shù)據(jù)集的此數(shù)據(jù)集的元素?cái)?shù).如果 count 為-1,或者如果 count 大于此數(shù)據(jù)集的大小,則新數(shù)據(jù)集將包含此數(shù)據(jù)集的所有元素.

返回:

返回一個(gè) Dataset.

unbatch

unbatch()

將此數(shù)據(jù)集的元素拆分為連續(xù)元素的序列.

例如,如果此數(shù)據(jù)集的元素被塑造為 [B, a0, a1, ...],其中 B 可能會(huì)因元素而異,那么對(duì)于此數(shù)據(jù)集中的每個(gè)元素,未分割數(shù)據(jù)集將包含 B 連續(xù)的形狀元素 [a0, a1, ...].

返回:

返回一個(gè) Dataset.

zip

zip (datasets)

通過將給定數(shù)據(jù)集壓縮在一起來創(chuàng)建數(shù)據(jù)集.
此方法與 Python 中的內(nèi)置 zip () 函數(shù)具有相似的語義,主要區(qū)別在于數(shù)據(jù)集參數(shù)可以是數(shù)據(jù)集對(duì)象的任意嵌套結(jié)構(gòu).例如:

# NOTE: The following examples use `{ ... }` to represent the
# contents of a dataset.
a = { 1, 2, 3 }
b = { 4, 5, 6 }
c = { (7, 8), (9, 10), (11, 12) }
d = { 13, 14 }

# The nested structure of the `datasets` argument determines the
# structure of elements in the resulting dataset.
Dataset.zip((a, b)) == { (1, 4), (2, 5), (3, 6) }
Dataset.zip((b, a)) == { (4, 1), (5, 2), (6, 3) }

# The `datasets` argument may contain an arbitrary number of
# datasets.
Dataset.zip((a, b, c)) == { (1, 4, (7, 8)),
                            (2, 5, (9, 10)),
                            (3, 6, (11, 12)) }

# The number of elements in the resulting dataset is the same as
# the size of the smallest dataset in `datasets`.
Dataset.zip((a, d)) == { (1, 13), (2, 14) }

ARGS:

  • datasets:數(shù)據(jù)集的嵌套結(jié)構(gòu).

返回:

返回一個(gè) Dataset.

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)