ワンクリックで
neurojax-biophysics
Guidelines for implementing biophysical neural mass models in NeuroJAX.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Guidelines for implementing biophysical neural mass models in NeuroJAX.
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 developing NeuroJAX (OSL-JAX) components.
| name | neurojax_biophysics |
| description | Guidelines for implementing biophysical neural mass models in NeuroJAX. |
To implement differentiable biophysical models (Neural Masses) that can be fitted to data using diffrax and optimistix.
All models should inherit from a common base and solve ODEs/SDEs.
vbjax for reference equations. Wraps in equinox.Module.diffrax ODE solver.class AbstractNeuralMass(eqx.Module):
def vector_field(self, t, y, args):
raise NotImplementedError
class WongWang(AbstractNeuralMass):
coupling: float
def vector_field(self, t, y, args):
# dx/dt = ...
return dS