- 关于'NoneType' object has no attri
- python-列表append方法-python 提示Attri
- 用pygal绘图时报错AttributeError: '
- python提示AttributeError: 'NoneTyp
- 在写python脚本时遇到AttributeError: 'No
- pymysql:nonetype object has no a
- protobuf'module' object has no a
- .append报错 'NoneType' object has
- appium 'int' object has no attri
- 2018-11-27'NoneType' object has
出现错误的位置在;
model=Model(inputs=inp,outputs=out)
在这里是因为中间的nm=Lambda(lambda inp: K.mean(inp, axis=1) ),不是layer,
这里需要添加上nm=nm(xinput),将其转化为层。类似于keras.backend.xxx,都不是layer,需要经过转化。
记录自己的错误并且记录,这个解决方法来源于https://blog.csdn.net/cning_123/article/details/83304209和python - Keras Multi-inputs AttributeError: 'NoneType' object has no attribute 'inbound_nodes' - Stack Overflow。
网友评论