AttributeError: 'Tensor' object has no attribute 'sigmod'
时间: 2023-09-15 15:20:02 浏览: 141
bcremoveobjectimageattributecontent:BC Remove Object Image Attribute Content 提供了一个稳定而灵活的解决方案,允许用户根据当前版本、所有版本或新版本动态删除内容对象图像属性内容。 提供对图像属性内容的脚本化操作!
这个错误是因为你在使用 TensorFlow 的 Tensor 类型对象上调用了 `sigmod` 方法,但是该方法的正确拼写应该是 `sigmoid`。
所以,你需要将代码中所有的 `sigmod` 都替换为 `sigmoid`,例如:
```python
# 错误示范
output = tf.sigmod(logits)
# 正确示范
output = tf.sigmoid(logits)
```
阅读全文