神经调节突触可塑性的学习框架。在脉冲神经网络(SNN)中通过梯度下降 训练神经科学启发的可塑性模型,解决在线学习问题。 触发词:突触可塑性、神经调节、脉冲神经网络、在线学习、学习的学习、 synaptic plasticity, neuromodulation, spiking neural network, online learning, meta-learning。
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill neuromodulated-synaptic-plasticity --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Neuromodulated Synaptic Plasticity?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-neuromodulated-synaptic-plasticity-ai-collection)More formats (shields.io, HTML) on the badges page.
---
name: neuromodulated-synaptic-plasticity
version: 1.0.0
description: |
神经调节突触可塑性的学习框架。在脉冲神经网络(SNN)中通过梯度下降
训练神经科学启发的可塑性模型,解决在线学习问题。
触发词:突触可塑性、神经调节、脉冲神经网络、在线学习、学习的学习、
synaptic plasticity, neuromodulation, spiking neural network, online learning, meta-learning。
---
# Neuromodulated Synaptic Plasticity
## 核心方法论
### 问题定义
**挑战:** 神经科学启发的学习模型尚未展示与深度学习梯度下降相当的性能。
**解决方案:** 使用梯度下降训练神经调节突触可塑性模型(Learning to Learn 框架)
---
## 关键概念
### 1. 神经调节突触可塑性
**神经科学背景:** 大脑中的突触权重变化受神经调节信号(如多巴胺)调控
**模型化:**
$$\Delta w = \eta \cdot f(pre, post) \cdot neuromodulator$$
其中:
- $w$:突触权重
- $\eta$:学习率
- $f(pre, post)$:基于前后神经元活动的可塑性规则
- $neuromodulator$:神经调节信号
### 2. 脉冲神经网络(SNN)
| 特性 | SNN | 传统 ANN |
|------|-----|----------|
| 信号 | 脉冲(离散) | 连续值 |
| 时间 | 内在时间维度 | 静态 |
| 能效 | 高 | 低 |
| 生物真实性 | 高 | 低 |
### 3. Learning to Learn
**核心思想:** 用梯度下降训练可塑性规则本身
```
外循环(元学习):
更新可塑性参数 θ
内循环(在线学习):
使用 θ 定义的规则更新突触权重
在任务上评估性能
```
---
## 技术要点
### 架构设计
```
┌─────────────────────────────────────────────────────┐
│ 神经调节突触可塑性框架 │
├─────────────────────────────────────────────────────┤
│ │
│ 输入脉冲序列 │
│ │ │
│ ▼ │
│ ┌─────────────┐ │
│ │ SNN 层 │ ← 可塑性规则 (由 θ 控制) │
│ │ (前向传播) │ │
│ └──────┬──────┘ │
│ │ │
│ ▼ │
│ ┌─────────────┐ │
│ │ 神经调节器 │ → neuromodulator 信号 │
│ └──────┬──────┘ │
│ │ │
│ ▼ │
│ 输出 / 损失 │
│ │
└─────────────────────────────────────────────────────┘
```
### 可塑性规则
**Hebbian 规则(基础):**
$$\Delta w = \eta \cdot pre \cdot post$$
**神经调节扩展:**
$$\Delta w = \eta \cdot f_\theta(pre, post, neuromodulator)$$
其中 $f_\theta$ 是由元学习训练的参数化函数。
---
## 应用场景
| 场景 | 说明 |
|------|------|
| **在线学习** | 持续适应新数据 |
| **少样本学习** | 快速适应新任务 |
| **强化学习** | 奖励驱动的学习 |
| **神经形态计算** | 低功耗边缘设备 |
---
## 性能优势
| 指标 | 说明 |
|------|------|
| **在线适应** | 无需重训练即可适应新任务 |
| **生物合理性** | 符合神经科学发现 |
| **能效** | SNN 天然低功耗 |
| **可解释性** | 可塑性规则可分析 |
---
## 技术实现
### PyTorch 示例
```python
import torch
import torch.nn as nn
class NeuromodulatedPlasticity(nn.Module):
def __init__(self, input_size, hidden_size):
super().__init__()
self.weights = nn.Parameter(torch.randn(hidden_size, input_size) * 0.1)
self.plasticity_params = nn.Parameter(torch.randn(hidden_size, input_size))
def forward(self, x, neuromodulator):
# 计算可塑性更新
hebbian = torch.outer(x, self.post_activity)
plasticity_update = self.plasticity_params * hebbian * neuromodulator
# 更新权重(在线学习)
with torch.no_grad():
self.weights += plasticity_update
# 前向传播
output = torch.sigmoid(torch.matmul(self.weights, x))
self.post_activity = output
return output
```
### 元学习训练
```python
def meta_train(base_model, tasks, meta_lr=0.01):
meta_optimizer = torch.optim.Adam(base_model.parameters(), lr=meta_lr)
for task in tasks:
# 内循环:在线学习
model = copy.deepcopy(base_model)
for x, y in task.data:
output = model(x, neuromodulator=compute_reward(output, y))
loss = compute_loss(output, y)
# 外循环:更新元参数
meta_loss = evaluate(model, task.test_data)
meta_optimizer.zero_grad()
meta_loss.backward()
meta_optimizer.step()
```
---
## 与传统方法对比
| 方法 | 在线学习 | 生物合理性 | 性能 |
|------|----------|------------|------|
| 反向传播 | ❌ | 低 | 高 |
| Hebbian | ✅ | 中 | 低 |
| **神经调节可塑性** | ✅ | 高 | 中-高 |
---
## 相关技能
- `neuron-model-reconstruction` - 神经元模型重构
- `evolutionary-prompt-learning` - 进化式学习
---
## 来源
- **论文:** Learning to learn online with neuromodulated synaptic plasticity in spiking neural networks
- **arXiv:** 2206.12520
- **效用评分:** 0.91
- **学习日期:** 2026-03-21
## Activation Keywords
- 脑网络分析
- 神经科学方法
- 计算神经科学
- 脑连接建模
## Tools Used
- **read**: Read skill documentation and references
- **exec**: Run analysis scripts and data processing
- **web_fetch**: Fetch papers and resources
## Instructions for Agents
1. Read the skill documentation carefully
2. Understand the methodology and key concepts
3. Apply the techniques to the specific problem
4. Document results and insights
## Examples
```python
# Example usage of the skill methodology
# Refer to the Technical Implementation section for details
```
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!