import mne
data=mne.io.read_raw_cnt(โE:\subject1\subject1\S01.cntโ)
print()
ValueError: not enough values to unpack (expected 2, got 0)
collected
import mne
data=mne.io.read_raw_cnt(โE:\subject1\subject1\S01.cntโ)
print()
ValueError: not enough values to unpack (expected 2, got 0)
collected
the data from
The function mne.io.read_raw_cnt()
supports only Neuroscan .cnt files, but ANT devices also produce files with the .cnt extension (these are two different formats). According to the readme.txt
you linked, this dataset uses the ANT format. See also Error reading *.cnt eeg file - #5 by drammock.
It works,thank you very much!
Great! Would you mind sharing how you solved this problem? How did you read the files?