원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.