AttributeError: 'Tensor' object has no attribute 'sigmod'
时间: 2023-09-15 07:20:02 浏览: 135
这个错误是因为你在使用 TensorFlow 的 Tensor 类型对象上调用了 `sigmod` 方法,但是该方法的正确拼写应该是 `sigmoid`。
所以,你需要将代码中所有的 `sigmod` 都替换为 `sigmoid`,例如:
```python
# 错误示范
output = tf.sigmod(logits)
# 正确示范
output = tf.sigmoid(logits)
```
阅读全文