원클릭으로
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.