在我们的 EEG 实验中,我们使用了 64 个电极和 1 个 EOG 通道。我们正在尝试使用 MNE 包读取它,但遇到了错误。看起来 MNE 默认需要 64 个频道?
raw = read_raw_edf(input_fname=data_file,
eog=['EOG'],
preload=True)
给我们这个错误:
IndexError: index 65 is out of bounds for axis 0 with size 64
我们如何避免它?我们是否应该自己设置蒙太奇,以覆盖预期的 64 通道蒙太奇?