我想通过插值(例如使用最近邻)将张量(层之间)的大小(无,2,7,512)调整为(无,2,8,512),类似于tf.image.resize_nearest_neighbor
Tensorflow中可用的此功能.
有没有办法做到这一点?
我尝试直接使用 Tensorflow 函数tf.image.resize_nearest_neighbor
并将张量传递给下一个 Keras 层,但是在下一层时抛出了这个错误:
AttributeError:“张量”对象没有属性“_keras_history”
我相信这是由于 Tensorflow 张量中缺少某些属性,这是有道理的,因为该层期望通过 Keras 张量。