Version 1.11.0.dev36+gf7cab3af2 (development) (2025-08-19)#
Bugfixes#
Handle scenario where an Eyelink recording switched from binocular to monocular mode during a trial by Scott Huberty (#12847)
Fix bug with
mne.io.read_raw_egi()
whereinfo["dev_head_t"]
was an identity matrix instead ofNone
, by Eric Larson. (#13112)Fix bug with
mne.open_report()
not working with old saved files, by Eric Larson. (#13341)Restore
clipping=3
inplot()
(which was mistakenly changed to1.5
) to reduce excessive clipping of raw data, by Clemens Brunner. (#13354)Make
read_raw_eyelink()
work with ASCII files collected with Eye Event Mode set to “HREF” by Scott Huberty. (#13357)model
parameter ofmne.decoding.LinearModel
will not be modified, usemodel_
attribute to access the fitted model. To be compatible with all MNE-Python versions you can usegetattr(clf, "model_", getattr(clf, "model"))
The providedmodel
is expected to be a supervised predictor, i.e. classifier or regressor (orsklearn.multiclass.OneVsRestClassifier
), otherwise an error will be raised. by Gennadiy Belonosov. (#13361)Fix the check in
mne.make_forward_solution()
that all MEG sensors are outside a spherical BEM model, by Marijn van Vliet (#13371)Ensure auto-computed plot scalings are always non-zero, by Daniel McCloy. (#13376)
New features#
Implement GEDTransformer superclass that generalizes
mne.decoding.CSP
,mne.decoding.SPoC
,mne.decoding.XdawnTransformer
,mne.decoding.SSD
and fix related bugs and inconsistencies, by Gennadiy Belonosov. (#13259)
Other changes#
Changed “enhancement” to “new feature” in the contributing guide as enhancement is not a recognized change type, by Shristi Baral (#13373)