بنقرة واحدة
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.