AttributeError: 'Tensor' object has no attribute 'logits'. Did you mean: 'logit'?
时间: 2023-10-10 21:06:11 浏览: 619
AttributeError: module 'tensorflow.compat.v1' has no attribute '
您遇到的问题是`AttributeError: 'Tensor' object has no attribute 'logits'`,出现这个错误是因为在Tensor对象上没有`logits`属性。根据您提供的信息,您可能误用了属性名称。正确的属性名称可能是`logit`,而不是`logits`。请检查您的代码并将`logits`更正为`logit`。如果您的意图是使用`logit`属性,那么在此处更正即可解决问题。
阅读全文