Local Pheromone Network methodology for sparse, local, manually updated neural networks without backpropagation. Uses pheromone-weighted Hebbian updates with short-term/long-term synaptic traces, consolidation, and replay. Achieves partitioned memory preservation, conflict reduction, and structural plasticity through biologically-inspired mechanisms.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill local-pheromone-network --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Local Pheromone Network?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-local-pheromone-network)More formats (shields.io, HTML) on the badges page.
---
name: local-pheromone-network
category: ai_collection
trigger_words:
- local pheromone network
- pheromone-weighted learning
- synaptic traces
- consolidation replay
- structural plasticity
- partitioned memory
- 信息素网络
- 局部学习
description: >
Local Pheromone Network methodology for sparse, local, manually updated neural networks without backpropagation.
Uses pheromone-weighted Hebbian updates with short-term/long-term synaptic traces, consolidation, and replay.
Achieves partitioned memory preservation, conflict reduction, and structural plasticity through biologically-inspired mechanisms.
arxiv_id: "2606.30669"
authors: ["Xingcheng Fu", "Xianjun Chen", "Zhihao Li"]
affiliation: "Not specified"
date: "2026-06-22"
---
# Local Pheromone Network: Sparse Local Learning with Multi-Scale Synaptic Trails
## Overview
Local Pheromone Network is a research prototype for sparse, local, manually updated neural networks that operates without automatic differentiation. Each output unit reads only a fixed local neighborhood of input units subject to geometric distance and molecular-tag compatibility.
The system implements biologically-inspired mechanisms:
- **Short-term pheromone traces**: Immediate synaptic activity markers
- **Long-term pheromone traces**: Consolidated synaptic strength indicators
- **Consolidation state**: Optional mechanism for memory stabilization
- **Structural plasticity**: Dynamic connectivity changes
- **Local replay**: Reactivation of recent patterns for conflict resolution
## Core Methodology
### Local Connectivity Constraints
Each output unit has:
- **Fixed local neighborhood**: Reads only nearby input units
- **Geometric distance constraint**: Connection probability decays with distance
- **Molecular-tag compatibility**: Synapses must match molecular markers (inspired by synaptic tagging)
This contrasts with fully-connected networks where every output can read every input.
### Pheromone-Weighted Hebbian Updates
Training does not use backpropagation. Instead, each layer performs:
1. **Pheromone-weighted update**: Synaptic changes weighted by pheromone trace strength
2. **Budgeted subset selection**: Only a subset of local synapses updated per timestep
3. **Local error + co-activity**: Selection based on local error signal and pre/post co-activation
The update budget adapts online:
- **Shrinks when loss improves**: Focus on currently successful synapses
- **Expands when loss worsens**: Explore new synaptic neighborhoods
### Multi-Scale Trace System
Each synapse stores:
- **Weight**: Current synaptic strength
- **Short-term pheromone trace**: Recent activity (fast decay)
- **Long-term pheromone trace**: Consolidated strength (slow decay)
- **Consolidation state**: Optional flag for stabilized memories
The dual-trace system separates:
- **Immediate plasticity**: Short-term trace mediates rapid changes
- **Long-term stability**: Long-term trace preserves consolidated memories
### Optional Mechanisms
**Structural Plasticity**:
- Add/remove synapses based on activity patterns
- Grow new connections in high-activity regions
- Prune inactive synapses
**Local Replay**:
- Reactivate recent patterns during rest periods
- Strengthen consolidated memories
- Resolve conflicts between competing memories
**Output Masks for Partitioned Learning**:
- Mask different output subsets for different tasks
- Prevent catastrophic interference
- Enable multi-task learning without shared parameters
**Target-Free Local Contrastive Step**:
- Contrastive learning without explicit targets
- Encourage diversity in learned representations
- Improve generalization
## Key Findings
### Partitioned Memory Preservation
Using tags and masks, the network preserves partitioned memories without interference. Different memory subsets can coexist without overwriting each other.
### Consolidation Reduces Forgetting
The consolidation mechanism stabilizes memories, reducing catastrophic forgetting when new information is learned. Consolidated memories are more resistant to interference.
### Replay Resolves Conflicts
When conflicting memories are presented, local replay mechanisms help resolve conflicts by reactivating and strengthening the dominant pattern.
### Experimental Results
**Synthetic Tasks**:
- **Regression**: Learns local linear rules
- **Partitioned memory**: Preserves separate memory subsets
- **Conflicting memory**: Reduces interference via replay
- **Consolidated conflict**: Maintains stability with consolidation
- **Structural plasticity**: Adapts connectivity dynamically
- **Long-context hybrid memory**: Handles complex multi-task scenarios
Note: All experiments use synthetic data; real-world benchmarks not yet tested.
## Implementation Notes
### Architecture
The prototype is implemented as a research system (language not specified in abstract). Key components:
- **Local neighborhood computation**: Each output unit computes over local inputs only
- **Pheromone trace updates**: Short-term and long-term traces updated after each forward pass
- **Budget-adaptive learning**: Update budget dynamically adjusted based on loss trends
- **Consolidation triggers**: Optional mechanism to transfer short-term to long-term traces
### Training Loop
Without backpropagation, training follows:
1. **Forward pass**: Compute outputs using local connectivity
2. **Local error computation**: Compute error at each output unit
3. **Pheromone update**: Update short-term traces based on activity
4. **Synapse selection**: Select subset of synapses for update
5. **Hebbian update**: Apply pheromone-weighted Hebbian rule
6. **Long-term trace update**: Optionally consolidate to long-term traces
7. **Replay** (optional): Reactivate recent patterns
8. **Structural plasticity** (optional): Add/remove synapses
### Hyperparameters
Key hyperparameters include:
- **Neighborhood size**: Radius of local connectivity
- **Trace decay rates**: Short-term and long-term decay constants
- **Update budget**: Maximum fraction of synapses updated per step
- **Consolidation threshold**: When to transfer to long-term traces
- **Replay frequency**: How often to trigger replay
## Practical Guidelines
### When to Use
- **Catastrophic forgetting problems**: When learning multiple tasks without interference
- **Sparse connectivity requirements**: When hardware or biological constraints limit connectivity
- **Energy-efficient learning**: When backpropagation is too computationally expensive
- **Partitioned multi-task learning**: When different tasks need isolated memory
- **Biological plausibility**: When modeling neural systems with local learning rules
### When Not to Use
- **High-accuracy requirements**: Not yet tested on real-world benchmarks
- **Large-scale deep learning**: Backpropagation still outperforms on standard tasks
- **When automatic differentiation is available**: Backprop is more sample-efficient
- **Production systems**: This is a research prototype, not a production-ready system
### Pitfalls
- **Sample efficiency**: Local learning rules may require more data than backprop
- **Hyperparameter sensitivity**: Trace decay rates and budget adaptation need careful tuning
- **Scalability**: Not tested on large-scale datasets or deep architectures
- **Evaluation**: Only synthetic benchmarks tested; real-world performance unknown
## Biological Inspiration
The methodology draws inspiration from:
- **Synaptic tagging and capture**: Molecular tags mark synapses for plasticity
- **Systems consolidation**: Short-term to long-term memory transfer
- **Replay during sleep**: Reactivation of recent experiences
- **Structural plasticity**: Activity-dependent connectivity changes
- **Local learning rules**: Hebbian plasticity without global error signals
## Research Status
This is a **research prototype** demonstrating proof-of-concept on synthetic tasks. Key limitations:
- Only tested on synthetic regression and memory tasks
- No comparison to backpropagation on standard benchmarks
- No real-world application demonstrated
- Implementation details (language, framework) not specified in abstract
Future work should validate on standard machine learning benchmarks (e.g., MNIST, CIFAR) and compare to backpropagation-based methods.
## Activation Triggers
Use this skill when working with:
- Biologically-inspired neural networks
- Local learning rules without backpropagation
- Catastrophic forgetting mitigation
- Structural plasticity in neural networks
- Synaptic tagging and consolidation
- Energy-efficient learning algorithms
- Partitioned multi-task learning
- Sparse neural connectivity
## Related Concepts
- Hebbian learning and STDP
- Synaptic tagging and capture hypothesis
- Systems consolidation in memory
- Catastrophic forgetting
- Structural plasticity
- Local learning rules
- Energy-efficient neural networks
- Biological neural network modeling
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!