synos-neuromorphic-computing — Spiking Neural Network Framework
tags: [ai consciousness cortex]
synos-neuromorphic-computing — Spiking Neural Network Framework
Section titled “synos-neuromorphic-computing — Spiking Neural Network Framework”Classification: PUBLIC
Crate: fruit/crates/synos-neuromorphic-computing/
Milestone: v41+
License: MIT OR Apache-2.0
What It Is
Section titled “What It Is”synos-neuromorphic-computing provides the full neuromorphic computing
framework for Syn_OS. It implements spiking neural networks (SNNs) with multiple
neuron models, synaptic plasticity, and homeostatic scaling. This is the
computation engine behind ALFRED’s Neuromorphic consciousness path.
Architecture
Section titled “Architecture”Neuron Models
Section titled “Neuron Models”| Model | Description |
|---|---|
LIF | Leaky Integrate-and-Fire |
Izhikevich | Izhikevich model |
HodgkinHuxley | Hodgkin-Huxley model |
AdEx | Adaptive Exponential Integrate-and-Fire |
SRM | Spike Response Model |
Synapse
Section titled “Synapse”Synapse represents a connection between neurons with:
- Weight (synaptic strength)
- Plasticity rules (STDP)
- Delay (conduction delay)
Key Types
Section titled “Key Types”ConsciousnessState— shared state type fromsynos-consciousness-typesNeuronModel— enum of supported neuron modelsSynapse— synaptic connection with plasticity
How It’s Wired
Section titled “How It’s Wired”Integration Points
Section titled “Integration Points”- ALFRED cortex —
CortexAdapterdelegates to this crate for SNN inference - synos-consciousness-types — shares
ConsciousnessStatetype - synos-cortex-q — alternative backend (MPS tensor-network) for QuantumInspired path
- Criterion benchmarks — performance regression suite included
Future Ideas
Section titled “Future Ideas”- Online learning — real-time STDP during inference
- Homeostatic scaling — automatic neuron excitability regulation
- Multi-compartment neurons — spatially extended neuron models
- Hardware acceleration — GPU/TPU kernel for large-scale SNN simulation