1

代码:

a=training_dataset.map(lambda x,y: (tf.pad(x,tf.constant([[13-int(tf.shape(x)[0]),0],[0,0]])),y))

给出以下错误:

TypeError: in user code:

<ipython-input-32-b25101c2110a>:1 None  *
    a=training_dataset.map(lambda x,y: (tf.pad(tensor=x,paddings=tf.constant([[13-int(tf.shape(x)[0]),0],[0,0]]),mode="CONSTANT"),y))
/usr/local/lib/python3.6/dist-packages/tensorflow/python/framework/constant_op.py:264 constant  **
    allow_broadcast=True)
/usr/local/lib/python3.6/dist-packages/tensorflow/python/framework/constant_op.py:282 _constant_impl
    allow_broadcast=allow_broadcast))
/usr/local/lib/python3.6/dist-packages/tensorflow/python/framework/tensor_util.py:456 make_tensor_proto
    _AssertCompatible(values, dtype)
/usr/local/lib/python3.6/dist-packages/tensorflow/python/framework/tensor_util.py:333 _AssertCompatible
    raise TypeError("Expected any non-tensor type, got a tensor instead.")

TypeError: Expected any non-tensor type, got a tensor instead.

但是,当我使用:

a=training_dataset.map(lambda x,y: (tf.pad(x,tf.constant([[1,0],[0,0]])),y))

上面的代码工作正常。这使我得出结论,有些地方出了问题:13-tf.shape(x)[0]但无法理解是什么。我尝试将其转换tf.shape(x)[0]int(tf.shape(x)[0]),但仍然出现相同的错误。

我想要代码做什么:我有一个tf.data.Dataset对象具有可变长度的大小序列,(None,128)其中第一个维度(无)小于 13。我想填充序列,使每个集合的大小为 13 即(13,128)。有没有替代方法(如果上述问题无法解决)?

4

1 回答 1

2

一个有效的解决方案:

使用:

paddings = tf.concat(([[13-tf.shape(x)[0],0]], [[0,0]]), axis=0)

而不是使用:

paddings = tf.constant([[13-tf.shape(x)[0],0],[0,0]])

为我工作。但是,我仍然无法弄清楚为什么后者不起作用。

于 2020-08-06T17:57:12.167 回答