當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.data.TextLineDataset.concatenate用法及代碼示例


用法

concatenate(
    dataset, name=None
)

參數

  • dataset Dataset 被連接。
  • name (可選。) tf.data 操作的名稱。

返回

  • Dataset 一個Dataset

通過將給定數據集與此數據集連接來創建 Dataset

a = tf.data.Dataset.range(1, 4)  # ==> [ 1, 2, 3 ]
b = tf.data.Dataset.range(4, 8)  # ==> [ 4, 5, 6, 7 ]
ds = a.concatenate(b)
list(ds.as_numpy_iterator())
[1, 2, 3, 4, 5, 6, 7]
# The input dataset and dataset to be concatenated should have
# compatible element specs.
c = tf.data.Dataset.zip((a, b))
a.concatenate(c)
Traceback (most recent call last):
TypeError:Two datasets to concatenate have different types
<dtype:'int64'> and (tf.int64, tf.int64)
d = tf.data.Dataset.from_tensor_slices(["a", "b", "c"])
a.concatenate(d)
Traceback (most recent call last):
TypeError:Two datasets to concatenate have different types
<dtype:'int64'> and <dtype:'string'>

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.data.TextLineDataset.concatenate。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。