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