Transport mean field methodology for approximating macroscopic dynamics of spiking neural networks. Analytically derives firing rate fluctuations in coupled integrate-and-fire populations via solutions to the transport equation and Fokker-Planck system.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill transport-mean-field-snn-dynamics --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Transport Mean Field Snn Dynamics?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-transport-mean-field-snn-dynamics-55bcc86f)More formats (shields.io, HTML) on the badges page.
---
name: transport-mean-field-snn-dynamics
description: "Transport mean field methodology for approximating macroscopic dynamics of spiking neural networks. Analytically derives firing rate fluctuations in coupled integrate-and-fire populations via solutions to the transport equation and Fokker-Planck system."
---
# Transport Mean Field Methodology for SNN Dynamics
**Paper:** Approximate Macroscopic Dynamics of Spiking Neural Networks Based on Solutions to the Transport Equation (arXiv: 2605.14319)
**Authors:** Wilten Nicola, Sue Ann Campbell
**Published:** 2026-05-14
**Categories:** q-bio.NC, math.DS
## Problem Statement
Firing rate fluctuations in neural populations are observed experimentally across multiple time scales. Understanding how these fluctuations emerge from microscopic neural dynamics is essential for building accurate mean field models of spiking neural networks.
## Core Methodology
This paper provides a **transport-based mean field approximation** for spiking neural network dynamics that captures firing rate fluctuations arising from the interaction between time-varying inputs, initial voltage distributions, and network coupling.
### Key Theoretical Framework
1. **Fokker-Planck System**
- Models the evolution of the voltage density distribution ρ(v,t)
- Accounts for both deterministic drift (input-driven) and stochastic diffusion (noise)
- Population firing rate = probability flux at threshold
2. **Transport Solution (Advection Equation)**
- Unlike traditional mean field approaches based on asynchronous steady states
- Uses the transport (advection) solution to approximate dynamics
- Assumes time-varying inputs are **slow** relative to neural timescales
- Neurons operate in the **excitation-driven regime**
3. **Instantaneous Population Rate Approximation**
- Derives the evolution of firing rate as a function of:
- Initial voltage distribution
- Time-varying synaptic inputs
- Network coupling strength
- Captures how rate fluctuations emerge dynamically
### Mathematical Foundation
The approach solves:
- **Advection equation**: ∂ρ/∂t + ∂/∂v [μ(v,t)ρ] = 0
- Where μ(v,t) is the drift term (input + coupling)
- **Flux calculation**: F(t) = μ(V_th, t) · ρ(V_th, t)
- Population firing rate = flux at threshold voltage
- **Coupling**: Self-consistent mean field where input depends on population rate
### Key Insights
- Firing rate fluctuations emerge from dynamic interaction of three factors:
1. **Time-varying inputs** (external stimuli)
2. **Initial voltage densities** (network state)
3. **Coupling** (recurrent feedback)
- Transport approximation is more accurate than steady-state approaches for:
- Time-varying stimuli
- Transient dynamics
- Non-asynchronous regimes
## Implementation Workflow
### Step 1: Define Voltage Distribution
```python
# Initialize voltage density ρ(v, t=0)
# Common choices: Gaussian, uniform, or empirical distribution
```
### Step 2: Solve Transport Equation
```python
# Method of characteristics for advection:
# v(t) = v(0) + ∫ μ(v(s), s) ds
# ρ(v(t), t) = ρ(v(0), 0) * |dv(0)/dv(t)|
```
### Step 3: Compute Flux at Threshold
```python
# F(t) = μ(V_th, t) · ρ(V_th, t)
# This gives the instantaneous population firing rate
```
### Step 4: Self-Consistent Coupling
```python
# For recurrent networks:
# μ(v,t) = μ_ext(t) + J · F(t)
# Solve iteratively for self-consistent rate
```
## Applications
- **SNN simulation acceleration**: Replace detailed spiking simulation with mean field approximation
- **Population dynamics analysis**: Understand how network parameters affect rate fluctuations
- **Bifurcation analysis**: Study transitions between dynamical regimes
- **Model validation**: Compare mean field predictions with full SNN simulations
## Activation Keywords
- mean field theory SNN
- firing rate fluctuations
- transport equation neural dynamics
- Fokker-Planck spiking networks
- population rate approximation
- integrate-and-fire dynamics
- excitation-driven regime
## Related Skills
- spiking-neural-network-analysis: General SNN paper analysis
- transport-mean-field-snn: Related transport mean field methodology
- neural-population-dynamics: Neural population analysis methods
## References
- Paper: https://arxiv.org/abs/2605.14319
- PDF: https://arxiv.org/pdf/2605.14319
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!