Retargeting a spiking network without touching a single synapse
A new fine-tuning method specializes a pretrained spiking network to a new task by adjusting only the neurons' intrinsic dynamics, membrane decay and firing threshold, while leaving every synaptic weight frozen. It matches full fine-tuning while training roughly a twentieth of the parameters, and it does so partly by recovering signal from the sub-threshold states that spikes normally throw away.
Source: Parameter-Efficient Fine-Tuning for Spiking Point Cloud Models, arXiv preprint (cs.CV), 2026. Primary source. Read in full via the arXiv HTML rendering of v1, including method and the main results tables.
What the work claims
The paper, called SpikePEFT, argues that most of the task-specific capacity of a spiking neural network does not live in its synaptic weight matrix at all, but in two much smaller sets of per-neuron variables: how fast each neuron's membrane potential decays, and how high its firing threshold sits.1 Freeze the synapses of a pretrained spiking backbone, adjust only those intrinsic variables, add a lightweight module that rescues near-threshold information, and you can retarget the network to a new dataset while updating only about 5% of the trainable parameters. On the ModelNet40 point-cloud benchmark the method reaches 92.4% accuracy; on the hardest ScanObjectNN split (PB_T50_RS) it reaches 85.6%, and on that split it slightly exceeds full fine-tuning of two different spiking backbones, by 1.4 and 1.1 percentage points respectively.
This is a primary methods result on a narrow domain, three-dimensional point-cloud classification, and it should be read as such: a careful engineering demonstration with ablations, not a sweeping theory of learning. The interesting part is not the accuracy, which is comparable to what full fine-tuning already gave. It is the claim about where the adaptation had to happen.
How it works
A leaky integrate-and-fire neuron, the workhorse unit here, has two knobs that shape its behaviour independent of its input weights. The membrane decay sets how much of the neuron's past state it retains from one time step to the next, so it controls the effective window over which the neuron integrates evidence. The firing threshold sets how large the membrane potential must grow before the neuron emits a spike, so it controls sensitivity. The first component of the method, which the authors call an Intrinsic Dynamics Tuner, applies small bounded, channel-wise adjustments to exactly these two quantities, leaving the pretrained synaptic transformations untouched. Adaptation becomes a matter of re-timing and re-sensitising neurons rather than rewiring them.
The second component addresses a problem specific to spikes. When a neuron's membrane potential is close to threshold but does not cross it, the binary spike output collapses that near-miss to the same zero as a neuron that received nothing at all. That discards real, task-relevant gradation. The Silent-State Disambiguation Adapter measures the margin between each neuron's membrane state and its threshold, flags the near-threshold silent neurons as informative, and modulates only those positions through a small down-projection and up-projection before the spike is generated. In effect it reads the sub-threshold analog value that the spike is about to erase, and feeds a corrected version back into the spiking pathway. Both components are trained by ordinary gradient descent on their own small parameter sets; the backbone never moves.
Where a skeptic should push
The single load-bearing assumption is that the frozen backbone already contains features rich enough that re-timing and re-sensitising its neurons is sufficient to serve the new task. That assumption holds here for a specific reason: the backbone was pretrained with surrogate-gradient backpropagation on a related distribution, so the useful features were already installed by a full, global optimisation. SpikePEFT is fine-tuning, not learning from scratch, and the paper never claims otherwise. Strip away the pretraining and there is no reason to expect intrinsic-dynamics tuning alone to conjure the needed representation.
Two further cautions. The reported gains over full fine-tuning are small, between roughly 0.9 and 1.4 percentage points, on one family of tasks; this is parity with a lighter touch, not a breakthrough in accuracy. And the widely quoted headline, that only about 5% of parameters are updated, is a statement about trainable-parameter count and storage, not about energy. On the authors' own operation-count estimates, inference energy does not fall; for the main backbone it rises by roughly 0.8 millijoules, about 15 percent, which they characterise as a practically negligible increase. It is also worth being precise that the method is not purely intrinsic: the intrinsic-dynamics tuner is, but the silent-state adapter contributes its own small trained projection matrices, so the frozen-synapse framing applies to the pretrained backbone rather than to every trainable parameter. The win is in adaptation cost, not in the cost of running the adapted network.
What a frozen weight matrix means for a dish
Organoid intelligence has an addressing problem that this paper throws into sharp relief. In living neural tissue you cannot set an individual synaptic weight to a chosen value. There is no demonstrated external write port that specifies the strength of a particular synapse, and the plasticity that exists is local and Hebbian, driven by correlated activity rather than by a globally computed gradient. The field does have a write channel, patterned electrical or optogenetic stimulation that induces bulk potentiation and depression in the DishBrain lineage of work, but it is non-addressable and non-gradient: it nudges populations, not named synapses. So the weight matrix is hard to address individually rather than literally unreachable, and intrinsic excitability is best understood as a third control surface alongside induced plasticity, not the only one left standing.
What tissue does comparatively expose is intrinsic excitability. Neuromodulators, tonic background drive, ionic and pharmacological manipulation, optogenetic depolarisation, temperature, and the level of network inhibition all shift how readily neurons fire and how long they integrate, the same broad quantities SpikePEFT tunes as an effective decay and an effective threshold. The non-obvious implication is encouraging in one direction and sobering in several. Encouraging: SpikePEFT is a silicon existence proof that adaptation living mostly in intrinsic decay and threshold, with the synaptic backbone held fixed, can carry genuine task specialisation rather than acting as a mere global gain control. That promotes intrinsic-excitability manipulation from a blunt instrument to a candidate place to look for a task-level write channel in wetware, one that would sidestep the synaptic-write problem. The honest caveat is that a competing silicon analogy points the other way: for a fixed, un-pretrained recurrent substrate the closest parallel is reservoir computing, where the recurrent weights are left alone and only an external readout is trained, so control lives in that readout rather than in intrinsic tuning. If a culture is a reservoir rather than a pretrained backbone, SpikePEFT may be pointing at the wrong control surface.
The sobering half comes from the same mechanism. The first caveat is the load-bearing one and deserves top billing: the features SpikePEFT re-tunes were installed by backpropagation during pretraining, so the method only ever adapts an already-rich representation. A self-organised culture has no such pretrained backbone, so the features a task needs may simply be absent, and no amount of excitability tuning will re-weight a representation that does not exist. Second, the intrinsic-dynamics tuner sets decay and threshold per neuron with a precise gradient step, a high-dimensional, individually addressed adjustment, whereas bulk neuromodulators, tonic drive, and temperature apply a roughly scalar regional bias. That is closer to a collapse in dimensionality than to a merely coarser version of the same knob, and only patterned, cell-type-targeted optogenetics claws back part of the addressability the silicon method assumes. Third, the silent-state adapter is built on the premise that near-threshold sub-threshold information is worth recovering because binary spikes discard it. A spike-sorted extracellular readout under-observes exactly that per-neuron near-threshold margin: recovering it needs intracellular access or voltage imaging that the standard microelectrode pipeline throws away, although the local field potential does carry an aggregate, non-addressable trace of the same sub-threshold current. So the paper that offers a candidate write channel names, in the same breath, an observability gap: the informative variable lives below the spike, where the ordinary interface reads it only in blurred aggregate.
The bottom line
Established, in silico and on point clouds: tuning membrane decay and firing threshold while freezing synapses, plus a cheap recovery of near-threshold silent states, can match full fine-tuning while training about 5% of parameters. That is a solid, ablated engineering result within its domain. Hypothesis, for organoid intelligence: intrinsic-excitability control is a viable task-level write channel for living tissue, because the variables that carry the adaptation here are the ones biology actually lets you touch. What would confirm it is a demonstration that shifting only excitability and threshold variables in a real culture, with no synaptic edit, retargets a readout to a new task. What would break it is evidence that an un-pretrained substrate lacks the needed features in the first place, so there is nothing for intrinsic re-tuning to re-weight. The result is a genuine clue about the right knob, not yet a method for turning it.
Frequently asked questions
Does this paper study organoids or living neurons?
No. It is entirely a digital, artificial spiking neural network trained on three-dimensional point-cloud datasets. Every connection to living tissue in this analysis is an inference we draw, not a claim the authors make; they never mention biology beyond the generic inspiration of spiking models.
What are membrane decay and firing threshold, concretely?
In a leaky integrate-and-fire neuron, membrane decay is the factor by which the neuron forgets its accumulated potential each time step, which sets how long a window it integrates over. The firing threshold is the potential the neuron must reach to emit a spike, which sets how easily it fires. Together they shape a neuron's timing and sensitivity without changing any input weight.
Why does tuning intrinsic dynamics matter more for tissue than for silicon?
Because in silicon you can also just edit the weights, so intrinsic tuning is a convenience. In tissue the weight matrix is hard to address at the level of individual synapses, while intrinsic excitability is one of the few things you can influence with drugs, light, or background drive. A method that shows adaptation can ride substantially on intrinsic variables is therefore more consequential for wetware, even though patterned stimulation gives the field a separate, population-level write channel.
What is a silent state and why should anyone care?
A silent state is a neuron whose membrane potential rose toward threshold but did not cross it, so it emitted no spike. Some of those near-misses carry information; the paper recovers it before the spike is generated. The catch for organoid work is that a spike-sorted electrode reads these sub-threshold near-misses only as a blurred aggregate in the local field potential, not per neuron, unless you add intracellular or voltage-imaging readout.
Does the method make the network cheaper to run?
No. It makes the network cheaper to adapt, updating far fewer parameters and less storage, but on the authors' own estimates inference energy does not fall and in fact rises slightly, by about 15 percent for the main backbone, which they call a negligible increase. Any claim that this reduces the running cost of a deployed spiking system would misread the result.
Could you train an organoid this way today?
Not as described. The method uses per-channel gradient descent on intrinsic parameters, which tissue cannot perform, and biological neuromodulation is diffuse rather than addressable. The paper is a clue about which variable to target, not a protocol that transfers to a culture.
References
- Guo Z, Zhu J, Sun Y, Chen L, Wang D. Parameter-Efficient Fine-Tuning for Spiking Point Cloud Models. arXiv. 2026. arXiv:2607.29048v1. Accessed 2026-08-13.