AttributeError: 'NoneType' object has no attribute 'get_output'
时间: 2023-12-11 09:33:50 浏览: 201
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误通常是由于在调用get_output()方法之前,没有正确地设置网络层导致的。可以尝试按照以下步骤解决此问题:
1.检查网络层是否正确设置。
2.确保网络层的输出不为空。
3.确保网络层的输出具有正确的形状和数据类型。
4.如果仍然无法解决问题,请尝试在engine前添加以下两行代码:
```python
last_layer = network.get_layer(network.num_layers - 1)
network.mark_output(last_layer.get_output(0))
```
这将确保最后一层被标记为输出层,从而避免出现'NoneType' object has no attribute 'get_output'的错误。
阅读全文