AttributeError: 'collections.OrderedDict' object has no attribute 'EEG_feature'
时间: 2023-08-03 12:02:51 浏览: 145
解决运行出现dict object has no attribute has_key问题
5星 · 资源好评率100%
这个错误提示表明在一个 `collections.OrderedDict` 对象上调用了一个名为 `EEG_feature` 的属性,但该属性不存在。你需要检查代码中的相关部分,确认是否正确地定义了 `EEG_feature` 属性或者是否在正确的上下文中使用了它。可能需要查看代码其他部分来找出问题所在。
阅读全文