10

我正在尝试在 Tensorflow 2.1中转换shapea 的属性,但出现此错误:Tensor

AttributeError: 'Tensor' object has no attribute 'numpy'

我已经检查过的输出tf.executing eagerly()True

一点上下文:我tf.data.Dataset从 TFRecords 加载 a,然后应用map. 映射函数正在尝试将shape数据集样本之一的属性转换Tensor为 numpy:

def _parse_and_decode(serialized_example):
    """ parse and decode each image """
    features = tf.io.parse_single_example(
        serialized_example,
        features={
            'encoded_image': tf.io.FixedLenFeature([], tf.string),
            'kp_flat': tf.io.VarLenFeature(tf.int64),
            'kp_shape': tf.io.FixedLenFeature([3], tf.int64),
        }
    )
    image = tf.io.decode_png(features['encoded_image'], dtype=tf.uint8)
    image = tf.cast(image, tf.float32)

    kp_shape = features['kp_shape']

    kp_flat = tf.sparse.to_dense(features['kp_flat'])
    kp = tf.reshape(kp_flat, kp_shape)

    return image, kp


def read_tfrecords(records_dir, batch_size=1):
    # Read dataset from tfrecords
    tfrecords_files = glob.glob(os.path.join(records_dir, '*'))
    dataset = tf.data.TFRecordDataset(tfrecords_files)
    dataset = dataset.map(_parse_and_decode, num_parallel_calls=batch_size)
    return dataset


def transform(img, labels):
    img_shape = img.shape  # type: <class 'tensorflow.python.framework.ops.Tensor'>`
    img_shape = img_shape.numpy()  # <-- Throws the error
    # ...    

dataset = read_tfrecords(records_dir)

这会引发错误:

dataset.map(transform, num_parallel_calls=1)

虽然这非常有效:

for img, labels in dataset.take(1):
    print(img.shape.numpy())

编辑:尝试访问img.numpy()而不是img.shape.numpy()在变压器和上面的代码中导致相同的行为。

我检查了类型,img_shape它是<class 'tensorflow.python.framework.ops.Tensor'>

有没有人在新版本的 Tensorflow 中解决了这类问题?

4

1 回答 1

23

您的代码中的问题是您不能使用.numpy()映射到的内部函数tf.data.Datasets,因为 . numpy()是 Python 代码而不是纯 TensorFlow 代码。

当你使用类似的函数时my_dataset.map(my_function),你只能tf.*在你的函数内部使用my_function函数。

这不是 TensorFlow 2.x 版本的错误,而是出于性能目的如何在后台生成静态图。

如果您想在映射到数据集的函数中使用自定义 Python 代码,则必须使用 tf.py_function(),文档:https ://www.tensorflow.org/api_docs/python/tf/py_function 。在数据集上进行映射时,确实没有其他方法可以混合 Python 代码和 TensorFlow 代码。

您也可以咨询此问题以获取更多信息;这是我几个月前问的确切问题:对于自定义 Python 代码,是否有替代 tf.py_function() 的方法?

于 2020-02-24T15:10:18.700 回答