** I have a dataset in BrainVision Core Data Format which consists of the header file (.vhdr), marker file (.vmrk), raw EEG data (.eeg) file, channels and events (.tsv) file, for each subject. When I read the .vhdr file using mne.io.read_raw_brainvision(fname.vhdr, preload=True), I get the following errorPreformatted text
**
# Import the BrainVision data into an MNE Raw object
raw = mne.io.read_raw_brainvision(fname, preload=True)
C:\Users\bipva\AppData\Local\Temp/ipykernel_21412/3588581508.py:8: RuntimeWarning: Not setting positions of 101 misc channels found in montage:
["J'2", "J'3", "J'4", "J'5", "J'6", "J'7", "J'8", "B'2", "B'3", "B'4", "B'5", "B'6", "B'7", "B'8", "B'9", "B'10", "B'11", "B'12", "C'2", "C'3", "C'4", "C'5", "C'6", "C'7", "C'8", "C'9", "C'10", "C'11", "C'12", "D'2", "D'3", "D'4", "D'5", "D'6", "D'7", "D'8", "D'9", "D'10", "D'11", "D'12", "E'2", "E'3", "E'4", "E'5", "E'6", "E'7", "E'8", "E'9", "E'10", "E'11", "E'12", "T'2", "T'3", "T'4", "T'5", "T'6", "T'7", "T'8", "L'2", "L'3", "L'4", "L'5", "L'6", "L'7", "L'8", "L'9", "L'10", "L'11", "L'12", "H'2", "H'3", "H'4", "H'5", "H'6", "H'7", "H'8", "O'2", "O'3", "O'4", "O'5", "O'6", "O'7", "O'8", "O'9", "O'10", "O'11", "O'12", "O'13", "O'14", "O'15", 'B2', 'B3', 'B4', 'B5', 'B6', 'B7', 'B8', 'B9', 'B10', 'B11', 'B12']
Consider setting the channel types to be of EEG/sEEG/ECoG/DBS/fNIRS using inst.set_channel_types before calling inst.set_montage, or omit these channels when creating your montage.
raw = mne.io.read_raw_brainvision(fname, preload=True)
Please help.