con un clic
neurojax-drug-response
Recover dose-response curves using SINDy with control inputs.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Recover dose-response curves using SINDy with control inputs.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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_drug_response |
| description | Recover dose-response curves using SINDy with control inputs. |
You are analyzing drug effects (e.g., Anticonvulsants, Psychedelics) on neural activity. Your goal is to reverse-engineer the "Effect Function" $E(C)$ from the dynamical changes observed in the EEG.
We assume the brain dynamics obey $\dot{x} = A x + B(u) x$, where $u$ is the Drug Concentration (proxy) or Dose. We use SINDy with control inputs to identify the structure of $B(u)$.
# Custom library required for Michaelis-Menten terms
def drug_library(x, u):
linear = jnp.concatenate([x, u], axis=1)
interaction = x * u
saturation = x * (u / (1.0 + u)) # Test Emax hypothesis
return jnp.concatenate([linear, interaction, saturation], axis=1)
neurojax.dynamics.SINDyOptimizer with this custom library.