属性错误:'Tensor'对象没有属性'shape'。

4

堆栈跟踪

Traceback (most recent call last):
  File "main.py", line 6, in <module>
    connection.start_socket(8089, callback=handler.message_processor)
  File "/mnt/d/workspace/SketchRecognitionWithTensorFlow/src/main/python/connection/python_socket_server.py", line 13, in start_socket
    process_message(connection, callback=callback)
  File "/mnt/d/workspace/SketchRecognitionWithTensorFlow/src/main/python/connection/python_socket_server.py", line 38, in process_message
    result = callback(general_proto)
  File "/mnt/d/workspace/SketchRecognitionWithTensorFlow/src/main/python/recognition/proto_handler.py", line 39, in message_processor
    return train_shape(general_proto.template)
  File "/mnt/d/workspace/SketchRecognitionWithTensorFlow/src/main/python/recognition/proto_handler.py", line 23, in train_shape
    rec.add_training_data(recognition_template.interpretation.label, recognition_template.shape)
  File "/mnt/d/workspace/SketchRecognitionWithTensorFlow/src/main/python/recognition/recognition_manager.py", line 98, in add_training_data
    self.recognizers[label].train(label, points)
  File "/mnt/d/workspace/SketchRecognitionWithTensorFlow/src/main/python/recognition/simple/recognizer.py", line 78, in train
    self.classifier.fit(x=reshaped_tensor, y=target, steps=1)
  File "/usr/local/lib/python2.7/dist-packages/tensorflow/contrib/learn/python/learn/estimators/estimator.py", line 173, in fit
    input_fn, feed_fn = _get_input_fn(x, y, batch_size)
  File "/usr/local/lib/python2.7/dist-packages/tensorflow/contrib/learn/python/learn/estimators/estimator.py", line 67, in _get_input_fn
    x, y, n_classes=None, batch_size=batch_size)
  File "/usr/local/lib/python2.7/dist-packages/tensorflow/contrib/learn/python/learn/io/data_feeder.py", line 117, in setup_train_data_feeder
    X, y, n_classes, batch_size, shuffle=shuffle, epochs=epochs)
  File "/usr/local/lib/python2.7/dist-packages/tensorflow/contrib/learn/python/learn/io/data_feeder.py", line 239, in __init__
    self.X.shape, None if self.y is None else self.y.shape, n_classes,
AttributeError: 'Tensor' object has no attribute 'shape'

以下是一些代码示例:

def create_classifier(self):
        hiddenLayers = [self.num_points, self.num_points * 2, 10]
        self.classifier = tf.contrib.learn.DNNClassifier(hidden_units=hiddenLayers)

标签是一个字符串 点列表是一个包含x、y值的数组列表 例如:

[[1,2],[2,3],[3,4],...]


def train(self, label, point_list):
    points = self.resample(point_list, self.num_points)
    utils.strip_ids_from_points(points)
    value_class = 1 if label == self.label else 0
    target = tf.reshape(tf.constant(value_class), [1])
    print 'training classifier to recognize value as: [' + str(value_class) + '] label is ' + label + ' class is ' + self.label
    point_tensor = tf.convert_to_tensor(points, dtype=tf.float32)
    reshaped_tensor = tf.reshape(point_tensor, [1, self.num_points * 2])
    print reshaped_tensor
    print target
    self.classifier.fit(x=reshaped_tensor, y=target, steps=1)

我不知道为什么它说张量没有形状属性,也不知道如何解决这个问题。感谢任何帮助。
3个回答

3

1
那么解决方案是什么? - Yan King Yin
1
@YanKingYin 我没看出问题在哪里 - 你卡在哪了?如果这个答案对你没有帮助,可以开一个新的问题。 - dv3

1
堆栈跟踪对于没有行号的代码片段帮助不大。但是我可以告诉你,当我看到那个错误时,是因为我在numpy数组上使用了tf.reshape而不是真正的tensorflow张量。当我尝试确定形状时,导致的对象抛出了该错误。希望这有所帮助。

0

从提供的代码中很难看出问题所在,特别是我无法确定错误发生的位置。但就我所知,我以前遇到过类似的问题:

在我看来,某些代码试图将 tf-tensor 处理为 np-array。张量没有 shape 属性,因为它们的形状存储为更复杂的对象。如果您想获取与 np 相同的信息,则必须调用 my_tensor.get_shape().as_list()。但由于您发布的代码中没有任何尝试访问 Tensor 上的任何 shape 属性,因此我不确定如何使用此信息来解决您的问题。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接