一键导入
neurojax-anesthesia-dynamics
Detect Loss of Consciousness (LOC) using SINDy-based bifurcation analysis on EEG.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Detect Loss of Consciousness (LOC) using SINDy-based bifurcation analysis on EEG.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Validate BEM Forward Model Accuracy using the MNE CTF Phantom dataset.
Validate Inverse Solver Accuracy using the MNE Elekta Phantom dataset.
Quantify Inverse Solver Leakage and Resolution using a Synthetic Phantom.
Validate Artifact Subspace Reconstruction (ASR) using the SSVEP with Artifact Trials dataset (ds004745).
Guidelines for implementing biophysical neural mass models in NeuroJAX.
Guidelines for developing NeuroJAX (OSL-JAX) components.
| name | neurojax_anesthesia_dynamics |
| description | Detect Loss of Consciousness (LOC) using SINDy-based bifurcation analysis on EEG. |
You are an expert in nonlinear dynamics and EEG processing. Your goal is to detect the transition from wakefulness to unconsciousness (LOC) in the PhysioNet GABAergic Anesthesia dataset using neurojax.
We model the brain state as a dynamical system $\dot{z} = f(z; \mu)$. As the drug concentration ($\mu$) increases, the system undergoes a Hopf Bifurcation (stable limit cycle $\to$ stable fixed point). We track the eigenvalues of the Jacobian $J = \partial f / \partial z$.
neurojax.io.load_physionet (if available) or standard mne loader for EDF files.sklearn.decomposition.PCA or neurojax.preprocessing.pca to reduce the high-dim spectrogram/channel space to a latent trajectory $z(t) \in \mathbb{R}^3$.neurojax.dynamics.SINDyOptimizer:
from neurojax.dynamics import SINDyOptimizer, polynomial_library
opt = SINDyOptimizer(threshold=0.01)
Xi = opt.fit(z, dz, polynomial_library)
Xi.dt.dz are noisy. Use diffrax or a robust differentiator (Savitzky-Golay) before passing to SINDy.