Sharp Flexible-Extent ESMV¶
Solver ID: SHARP_FLEX_ESMV
Usage¶
from invert import Solver
# fwd = ... (mne.Forward object)
# evoked = ... (mne.Evoked object)
solver = Solver("SHARP_FLEX_ESMV")
solver.make_inverse_operator(fwd)
stc = solver.apply_inverse_operator(evoked)
stc.plot()
Overview¶
Flex-extent ESMV variant with an anchored contrast-shaping postprocess aimed at reducing spatial dispersion while preserving multi-source support.
References¶
- Lukas Hecker (2025). Unpublished.
- Jonmohamadi, Y., Poudel, G., Innes, C., Weiss, D., Krueger, R., & Jones, R. (2014). Comparison of beamformers for EEG source signal reconstruction. Biomedical Signal Processing and Control, 14, 175-188.
API Reference¶
Bases: BaseSolver
FlexESMV7: FlexESMV2 + anchored contrast shaping.
This postprocess is designed specifically for the benchmark metrics: - Keep the EMD support threshold (0.25*max) stable (good EMD/AP) - Reduce the 50%-FWHM blurring region (good spatial_dispersion) - Suppress mid-level leakage maxima (can improve MLE)
Source code in invert/solvers/beamformers/sharp_flex_esmv.py
__init__ ¶
__init__(
name: str = "SharpFlexESMV (FlexESMV2+AnchoredContrast) Beamformer",
params: _AnchoredContrastParams | None = None,
reduce_rank: bool = True,
rank: str | int = "auto",
**kwargs,
)