Greedy Maximum-Likelihood¶
Solver ID: GreedyML
Usage¶
from invert import Solver
# fwd = ... (mne.Forward object)
# evoked = ... (mne.Evoked object)
solver = Solver("GreedyML")
solver.make_inverse_operator(fwd)
stc = solver.apply_inverse_operator(evoked)
stc.plot()
Overview¶
Source localization via multi-start greedy forward selection with ML objective, BIC model order selection, and coordinate-wise refinement. Scales to large source spaces.
References¶
- Wax, M., & Kailath, T. (1985). Detection of signals by information theoretic criteria. IEEE Trans. ASSP, 33(2), 387-392.
API Reference¶
Bases: BaseSolver
Source localization via multi-start greedy forward selection with ML objective, BIC model order selection, and coordinate-wise refinement.
Scales as O(n_starts * n_sources * k_max) — works for any source space.
References
[1] Wax, M., & Kailath, T. (1985). Detection of signals by information theoretic criteria. IEEE Trans. ASSP, 33(2), 387-392.
Source code in invert/solvers/music/greedy_ml.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | |
__init__ ¶
make_inverse_operator ¶
make_inverse_operator(
forward,
mne_obj=None,
*args,
alpha="auto",
noise_cov: Covariance | None = None,
k_max=5,
n_starts=50,
n_refine_iters=3,
penalty_mode="bic_per_timepoint",
**kwargs,
)