Multilayer learning with nothing but local error signals
Backpropagation trains deep networks brilliantly but demands things no biological circuit can do: a globally broadcast error, stored gradients, and precise weight transport. Martin Nilsson and Denis Kleyko at RISE Research Institutes of Sweden and Orebro University stack a different kind of layer, one whose only teaching signal is its own residual, and show the stack still learns to classify MNIST digits at error rates below 2 percent.
Source: A Programmer's Guide to Cascaded Adaptive Combiners: Online Learning by Biologically Accurate Models of Multilayer Neuron Networks, Nilsson and Kleyko, arXiv:2606.14146 (cs.NE), 2026. Primary source. Read in full via the arXiv HTML rendering of v1, including the algorithms, the MNIST experiments, and the incremental code appendix.
What the work claims
This is a methods and position paper, written deliberately as a programmer's guide rather than a benchmark shootout. Its claim is architectural: a multilayer network can be trained without any backward pass through the stack if each layer is built as an adaptive combiner, an old signal-processing construct in which a unit adjusts its weights to make its output match a reference, and the quantity that propagates forward is not an activation but an error, the residual left after the layer's best effort.1 Stack such layers and the network becomes a successive-approximation machine: each layer tries to cancel whatever error the previous layer emitted, and the final prediction is the sum of the layers' corrections.
The neuron model underneath is where the biology enters. The most refined variant, the adaptive conical combiner, separates inputs into fixed inhibitory weights, which serve as the reference signal, and adaptive non-negative excitatory weights, a constraint the authors argue reflects the sign asymmetry of real synapses and principles associated with Gray's rules on excitatory and inhibitory wiring. The unit's output is a low-pass-filtered error, and the weight update is a one-line rule: subtract a learning-rate-scaled product of error and input, clipped at zero so weights never go negative. The authors claim this local loop supports streamed, online learning by stochastic gradient descent or recursive least squares, avoids the memory and synchronization costs of backpropagation, and, in the demonstration, classifies handwritten digits competitively: error rates below 2.0 percent with random projection features and approaching 1.5 percent with random convolutional features.
How it works
An adaptive combiner receives a feature vector and a reference signal, and tunes its weights so the weighted sum of features approximates the reference; its output is the approximation error itself. A conventional neuron computes a weighted sum and applies a nonlinearity; here the neuron is the error term of a local regression, and plasticity is the regression updating itself. The conical variant enforces non-negative weights, turning the representational geometry into one of convex cones, and adds a first-order low-pass filter on the error feedback, parameterized by a forgetting factor, which the authors note stabilizes the loop when feedback delays are short relative to signal dynamics.
Cascading works by wiring the residuals in series. The first layer compares a random nonlinear expansion of the input, for MNIST a 784-pixel image passed through either a random projection followed by ReLU or ten-by-ten-pixel random convolutional filters with max pooling of stride 2 yielding 81 features per filter, against the ten-dimensional one-hot target. Whatever error remains becomes the reference for the next layer, which gets a fresh random expansion of the original input. Each layer's weights come from a least-squares solution, the layers were tested from 1 to 20 deep, and error falls with depth before plateauing. The random projection configurations used 1296, 2592, or 5184 basis functions per layer; the convolutional ones used 16, 32, or 64 filters. The conceptual lineage the authors themselves cite is matching pursuit, the sparse-approximation algorithm that selects components sequentially to grind an error down, and random-features kernel machines: a single such layer is functionally a randomized feed-forward network.
Where a skeptic should push
The single most load-bearing assumption is that per-layer least squares is a fair stand-in for the advertised online mechanism. It is not quite. The headline numbers come from closed-form regularized least-squares solutions per layer, the pseudo-inverse route, while the streamed, biologically flavored version, incremental gradient descent with the non-negativity constraint that makes the combiners conical, lives in an appendix with code but without a separately reported error figure. The unconstrained linear case provably converges to the same optimum incrementally, but once the non-negativity constraint enters, that equivalence is no longer guaranteed, and the paper does not quantify the gap. A careful reader should therefore file the below 2 percent and approaching 1.5 percent results as evidence about the architecture's representational capacity, not yet about its online learning rule.
Second, there is no backpropagation baseline at matched parameter count. MNIST error around 1.5 to 2 percent is respectable but far from the state of the art, and the greedy layer-wise scheme is conceptually close to boosting or to kernel regression on random features, which invites the question of what the cascading buys beyond a well-tuned single-layer random expansion. The depth curves do show real gains from stacking, which is the paper's best internal evidence. Third, the biological accuracy claim operates at the level of the single neuron model; no one has shown that cortical circuits implement combiner-style regression with inhibitory reference signals, and the paper sensibly does not claim otherwise. Fourth, everything is demonstrated on a saturated 28 by 28 pixel benchmark with no temporal structure, which is a weak test of a method whose stated purpose is streaming data.
A training contract living tissue could plausibly honor
For organoid intelligence the interesting question is never whether a substrate can compute; any sufficiently nonlinear dynamical system computes. It is whether the substrate can be trained under the constraints of living tissue: no access to internal weights, no way to freeze a forward pass while a backward sweep runs, no global error bus, and a strong prior that plasticity is driven by local signals, spike timing, neuromodulatory gating, and the balance between excitation and inhibition. Backpropagation violates all of these, which is why every serious proposal for training living neural networks eventually arrives at some local or two-phase approximation. What this paper contributes is a clean existence proof of a different extreme: a multilayer architecture trained by residuals only, where the signal that teaches layer k is exactly the signal layer k plus 1 consumes.1
The mechanism maps onto a dish more directly than the benchmark suggests. In a cortical organoid interfaced to a microelectrode array, an experimenter can inject a reference pattern through electrical or optogenetic stimulation and read out an error, the difference between the evoked population response and a target response, but cannot address individual synapses. The cascaded-combiner scheme needs precisely that interface: a reference the tissue can be asked to approximate, and a local error signal the tissue itself could be hypothesized to compute, for example through the fixed inhibitory side of its wiring. The non-negative excitatory-weight constraint is the detail worth dwelling on. If adaptation in living tissue respects sign constraints, then credit assignment in a dish is not a smaller version of backpropagation but a different algorithm altogether, closer to successive residual cancellation than to gradient descent. That reframing is the paper's genuine gift to the field: it gives experimenters a concrete, implementable hypothesis for what local-error training rules could look like, with working code.
The threats are equally concrete. The greedy layer-wise structure bakes in a directionality, errors flow strictly downstream, that real recurrent tissue does not respect; an organoid's wiring is recurrent to its core. And the performance ceiling matters: if a scheme built on convex per-layer solves plateaus near MNIST-level simplicity, then wherever deep end-to-end training wins by an order of magnitude, the local-error approach becomes a boutique biology demonstration. The honest calibration: this paper establishes architectural feasibility at small scale, not competitiveness, and its value for biological computing is as a blueprint for hypothesis-driven closed-loop experiments.
The bottom line
Established: stacked adaptive-combiner layers, each trained only on its locally available residual, form a working multilayer learner, reaching below 2.0 percent MNIST error with random projection features and approaching 1.5 percent with random convolutional features across depths of 1 to 20 layers, and the per-layer problem is convex least squares with principled online variants. Not established: that the conical, non-negative, biologically flavored variant trained incrementally matches those numbers, or that the approach is competitive with end-to-end training beyond toy benchmarks. For organoid intelligence, the durable idea is the training contract itself: reference in, residual out, local update, weights that cannot change sign. What would confirm its relevance: closed-loop culture experiments showing that a stimulated reference-and-residual protocol drives measurable, retained improvement in a population readout. What would break it: evidence that the non-negativity constraint costs most of the capacity, or that recurrent dynamics, which this architecture lacks, are essential to whatever computation organoids are actually good at.
Frequently asked questions
What is an adaptive combiner?
A signal-processing unit that adjusts its weights so a weighted sum of input features approximates a reference signal. Its output is the approximation error, which is what makes it useful as a building block for layered learning.
What makes the conical combiner biologically motivated?
It enforces non-negative weights on excitatory inputs, matching the sign asymmetry of real synapses, and treats the summed inhibitory input as a fixed reference signal, reflecting proposals that inhibitory wiring sets targets while excitatory wiring adapts.
How does this avoid backpropagation?
Each layer is trained only on the error emitted by the previous layer, which is available locally, so no gradient ever travels backward through the stack. Weight updates can run continuously as data streams in, using stochastic gradient descent or recursive least squares.
How well does it perform?
On MNIST, the reported test error falls below 2.0 percent with random projection features and approaches 1.5 percent with random convolutional features, with depth helping up to a plateau. Those figures come from closed-form least-squares layer solves.
Why does this matter for organoid intelligence?
Living tissue cannot implement backpropagation's global error and weight-transport machinery. A training scheme that needs only a local residual and sign-constrained updates describes the kind of contract a stimulated, electrode-read culture could plausibly honor.
What is the biggest open weakness?
The online, biologically accurate version with non-negative weights is demonstrated in code but not benchmarked head-to-head against the closed-form results, and the whole approach is untested on temporal or streaming tasks where it should have the largest advantage.
References
- M. Nilsson and D. Kleyko. A Programmer's Guide to Cascaded Adaptive Combiners: Online Learning by Biologically Accurate Models of Multilayer Neuron Networks. arXiv:2606.14146 (cs.NE). 2026. https://arxiv.org/abs/2606.14146. Accessed 2026-09-25.