ワンクリックで
neurojax-sleep-flow
Model Wake-NREM transitions as a continuous Neural ODE flow.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Model Wake-NREM transitions as a continuous Neural ODE flow.
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.
Detect Loss of Consciousness (LOC) using SINDy-based bifurcation analysis on EEG.
Validate Artifact Subspace Reconstruction (ASR) using the SSVEP with Artifact Trials dataset (ds004745).
Guidelines for implementing biophysical neural mass models in NeuroJAX.
| name | neurojax_sleep_flow |
| description | Model Wake-NREM transitions as a continuous Neural ODE flow. |
Sleep stages (N1, N2, N3) are artificial discretizations of a continuous biological process. Your goal is to model the "Sleep Manifold" using Neural ODEs on the OpenNeuro/Bitbrain sleep datasets.
Instead of classification (State $\in {0,1,2}$), we learn a velocity field $\dot{x} = f_\theta(x, t)$ that describes the flow of brain dynamics on a manifold defined by band powers.
diffrax.NeuralODE using equinox.
class VectorField(eqx.Module):
mlp: eqx.nn.MLP
def __call__(self, t, y, args):
return self.mlp(y)
diffrax.diffeqsolve to predict $x(t+\Delta t)$ from $x(t)$.diffrax.Tsit5 or diffrax.Kvaerno5 with adaptive stepping.