mne-python:读取和编写edf文件会导致运行时错误

时间:2017-12-11 04:58:57

标签: python european-data-format mne-python

我想写一个EDF文件但是在mne中没有找到允许我这样做的函数。所以我使用了pyedflib代替。但是当我尝试使用mne.io.read_raw_edf()读回我新创建的EDF文件时,我收到运行时错误:

RuntimeError: EDF+ Annotations (TAL) channel needs to be parsed completely on loading. You must set preload parameter to True.

我用于创建EDF文件的代码是来自pyedflib的演示:

https://github.com/holgern/pyedflib/blob/master/demo/writeEDFFile.py

我需要在写出或读入中进行哪些更改才能在我的EDF文件上使用mne函数?

1 个答案:

答案 0 :(得分:0)

您需要预加载数据:

mne.io.read_raw_edf(preload=True)

这仅适用于edf文件。对于.fif文件,没有必要。