gpt4 book ai didi

python - 如何使用 tf.data.Dataset.apply() reshape 数据集

转载 作者:行者123 更新时间:2023-12-04 08:20:50 26 4
gpt4 key购买 nike

我正在使用 tensorflow 中的时间序列模型。我的数据集包含物理信号。我需要将此信号划分为窗口,以将此切片窗口作为模型的输入。

这是我读取数据并对其进行切片的方式:

import tensorflow as tf
import numpy as np
def _ds_slicer(data):
win_len = 768
return {"mix":(tf.stack(tf.split(data["mix"],win_len))),
"pure":(tf.stack(tf.split(data["pure"],win_len)))}
dataset = tf.data.Dataset.from_tensor_slices({
"mix" : np.random.uniform(0,1,[1000,24576]),
"pure" : np.random.uniform(0,1,[1000,24576])
})
dataset = dataset.map(_ds_slicer)
print dataset.output_shapes
# {'mix': TensorShape([Dimension(768), Dimension(32)]), 'pure': TensorShape([Dimension(768), Dimension(32)])}

我想将此数据集 reshape 为 # {'mix': TensorShape([Dimension(32)]), 'pure': TensorShape([Dimension(32))}
numpy 中的等效转换如下所示:

signal  = np.random.uniform(0,1,[1000,24576])
sliced_sig = np.stack(np.split(signal,768,axis=1),axis=1)
print sliced_sig.shape #(1000, 768, 32)
sliced_sig=sliced_sig.reshape(-1, sliced_sig.shape[-1])
print sliced_sig.shape #(768000, 32)

我想用 tf.contrib.data.group_by_window作为 dataset.apply() 的输入,但不知道如何使用它。有没有办法可以使用任何自定义转换来 reshape 数据集?

最佳答案

我认为您只是在寻找转换 tf.contrib.data.unbatch .这正是您想要的:

x = np.zeros((1000, 768, 32))

dataset = tf.data.Dataset.from_tensor_slices(x)
print(dataset.output_shapes) # (768, 32)
dataset = dataset.apply(tf.contrib.data.unbatch())
print(dataset.output_shapes) # (32,)

从文档中:

If elements of the dataset are shaped [B, a0, a1, ...], where B may vary from element to element, then for each element in the dataset, the unbatched dataset will contain B consecutive elements of shape [a0, a1, ...].



为 TF 2.0 编辑

(感谢@DavidParks)

从TF 2.0开始,可以直接使用 tf.data.Dataset.unbatch :

x = np.zeros((1000, 768, 32))

dataset = tf.data.Dataset.from_tensor_slices(x)
print(dataset.output_shapes) # (768, 32)
dataset = dataset.unbatch()
print(dataset.output_shapes) # (32,)

关于python - 如何使用 tf.data.Dataset.apply() reshape 数据集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48415540/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com