Noisy Group Neurons (NGN) framework for high-performance spiking neural networks using population-level synchronous resetting and neural stochasticity. Combines NGN model with backpropagation learning based on mean-field dynamics to address spatiotemporal information loss and gradient mismatching in deep SNNs. Use when implementing or analyzing SNNs with stochastic resonance, synchronous resetting, or mean-field learning approaches.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill noisy-group-neurons-synchronous-resetting --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Noisy Group Neurons Synchronous Resetting?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-noisy-group-neurons-synchronous-resetting)More formats (shields.io, HTML) on the badges page.
---
name: noisy-group-neurons-synchronous-resetting
description: "Noisy Group Neurons (NGN) framework for high-performance spiking neural networks using population-level synchronous resetting and neural stochasticity. Combines NGN model with backpropagation learning based on mean-field dynamics to address spatiotemporal information loss and gradient mismatching in deep SNNs. Use when implementing or analyzing SNNs with stochastic resonance, synchronous resetting, or mean-field learning approaches."
metadata:
arxiv_id: "2608.17394"
published: "2026-08-18"
authors: "Yajie Zhai, Yanmei Kang, Meng Li, Zigang Huang"
tags: [spiking neural network, stochastic resonance, gradient mismatching, synchronous resetting, mean-field learning]
license: Complete terms in LICENSE.txt
---
# Noisy Group Neurons for High-Performance Spiking Neural Networks
## Overview
The Noisy Group Neuron (NGN) framework addresses two fundamental challenges in training deep Spiking Neural Networks (SNNs):
1. **Spatiotemporal information loss**: LIF neurons struggle to simultaneously encode spatial intensity distributions and temporal dynamics due to binary spike representation
2. **Gradient mismatching**: Discrepancy between forward response and backward matching signals during backpropagation
The NGN model incorporates **population-level synchronous resetting** and **neural stochasticity** as fundamental computational mechanisms, combined with mean-field dynamics for efficient backpropagation learning.
## Core Methodology
### Noisy Group Neuron (NGN) Model
The NGN model consists of K sub-neurons that share common input but have independent noise:
**Membrane Potential Dynamics:**
```
V_k^(t+1) = τ * H_k^t + I_0 + σ * η_k^t, 1 ≤ k ≤ K
```
Where:
- `H_k^t = V_k^t * (1 - O_k^t) + V_re * δ_(1,O_k^t)` (hard-resetting mechanism)
- `O_k^t = Θ(V_k^t - V_th)` (spike output)
- `η_k^t ~ N(0, 1)` (independent Gaussian noise for each sub-neuron)
- `σ` is noise intensity parameter
- `τ` is membrane time constant
- `V_re` is reset potential (typically 0)
### Mean-Field Learning
Instead of tracking individual sub-neuron dynamics (computationally expensive), the framework uses mean-field approximation:
**Averaged Membrane Potential:**
```
V̄(t + Δt) = (1 - e^(-Δt/τ_m)) * R_m * I_0 + V̄(t) * e^(-Δt/τ_m) + noise_term
```
This enables efficient backpropagation by treating the group response as a population probability rather than individual firing events.
### Key Parameters
- **Group Size (K)**: Number of sub-neurons in the group. Larger K provides better approximation to continuous response
- **Noise Intensity (σ)**: Controls stochastic resonance effect. Optimal σ enhances information transmission
- **Time Constant (τ)**: Membrane time constant affecting temporal integration
- **Reset Potential (V_re)**: Typically set to 0 for hard-resetting
- **Threshold (V_th)**: Spike threshold for all sub-neurons
## Implementation Guidelines
### For SNN Training
1. **Replace standard LIF neurons** with NGN units in your SNN architecture
2. **Initialize group size K** based on computational budget (K=10-100 typical)
3. **Tune noise intensity σ** using validation performance (start with σ=0.1-0.5)
4. **Use mean-field gradients** for backpropagation instead of surrogate gradients
5. **Apply synchronous resetting** across all K sub-neurons when any fires
### Performance Benefits
- Achieves **87.35% accuracy on CIFAR10-DVS** within only 10 inference time steps
- Demonstrates superior performance on CIFAR-10, CIFAR-100, Tiny-ImageNet, DVS-Gesture, and N-Caltech101
- Reduces spatiotemporal information loss through stochastic population coding
- Mitigates gradient mismatching via mean-field learning framework
## When to Use This Skill
- Implementing high-performance SNNs for neuromorphic computing
- Addressing gradient mismatching issues in deep SNN training
- Working with event-based vision datasets (DVS, N-Caltech101)
- Researching stochastic resonance in neural computation
- Developing mean-field learning algorithms for SNNs
- Analyzing population-level neural dynamics in SNNs
## Pitfalls and Considerations
- **Computational overhead**: NGN requires simulating K sub-neurons per unit, increasing memory and compute requirements
- **Hyperparameter sensitivity**: Performance depends on careful tuning of K, σ, and τ parameters
- **Implementation complexity**: Mean-field learning requires custom gradient computation
- **Dataset dependency**: Benefits most pronounced on event-based datasets with temporal dynamics
## References
- Original paper: [arXiv:2608.17394](https://arxiv.org/abs/2608.17394)
- Related work on stochastic resonance in SNNs
- Mean-field theory applications in neural networks
- Population coding in biological neural systems
## Activation Keywords
- noisy group neuron
- NGN framework
- synchronous resetting SNN
- mean-field SNN learning
- stochastic resonance spiking
- population-level SNN
- gradient mismatching SNNIs 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!