REVIEW 2 major objections 3 minor 1 cited by
Learning without feedback: Fixed random learning signals allow for feedforward training of deep neural networks
T0 review · 2 major / 3 minor · reviewed 2026-08-14 · deepseek-v4-flash
Pith's one-line read Fixed random label projections train deep networks without backpropagation or feedback pathways.
desk verdict Simple, useful training rule with honest empirical work; the proof of 90-degree alignment has a fixable gap that should be requested before publication. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the direct random target projection (DRTP) update rule, which sets each hidden layer's estimated gradient to \(\delta y_k = B_k^T y^*\), where \(B_k\) is a fixed random connectivity matrix and \(y^*\) is the one-hot target. The insight is that replacing the error vector with the target is equivalent to a shift-and-rescale of the error sign, so no feedback pathway is needed. The proof of 90-degree alignment relies on a lemma showing that with zero-initialized weights and a single training example, each weight matrix and hidden activation becomes a scalar multiple of a random target projection, which then lets the DRTP modulatory signal be expressed as a negative scalar multiple of a Moore-Penrose pseudo-inverse times the error.
What would settle it
Train a deeper fully-connected tanh network on a classification dataset with DRTP while measuring the angle between DRTP modulatory signals and backpropagation gradients; if the angle exceeds 90 degrees for any hidden layer while accuracy is still improving, or if the network fails to learn despite the angle claim, the central claim is falsified. More directly, evaluate the alignment identity \(e^T(\prod W_i)(\prod W_i)^+e\) in a single-example linear-hidden-layer setup; if it is non-positive at any update step, the proof's conclusion fails.
Extended reading notes
Core claim
The central claim is that for classification networks with sigmoid or softmax outputs and cross-entropy loss, the one-hot target encoding y* can replace the error signal in feedback alignment-based training, and the resulting modulatory signals remain aligned within 90 degrees of the backpropagation gradient directions. This makes it possible to train hidden layers of feedforward networks using only layer-local updates computed from a label-dependent random vector selection, with no dedicated feedback pathway. The paper proves this alignment for networks with linear hidden layers trained on a single example, and demonstrates empirically that DRTP trains fully-connected tanh networks on MNIST and CIFAR-10, reaching accuracies between backpropagation and shallow learning.
Load-bearing premise
The mathematical guarantee that DRTP updates stay within 90 degrees of backpropagation is proven only for a network with linear hidden layers, weights initialized to zero, and a single training example, and even that proof contains an unproven step where a matrix times its pseudo-inverse is treated as the identity; the paper assumes this result transfers to tanh networks trained on minibatches, supported only by measured angles.
Editorial extensions
If this is right
- Layers can be updated immediately during the forward pass, eliminating update locking and reducing memory buffering overhead.
- The weight transport problem disappears because no symmetric feedback weights are needed at all.
- DRTP is computationally cheaper than direct feedback alignment, since projecting the one-hot target is just selecting a precomputed random vector per layer per class.
- On MNIST and CIFAR-10 fully-connected networks, DRTP outperforms shallow learning and approaches feedback alignment accuracy, making it a candidate for adaptive edge computing.
- The purely feedforward update rule can be formulated as a three-factor synaptic plasticity rule, connecting to biologically plausible learning.
Reading between the lines
- The proof relies on the alignment term \(e^T(\prod W_i)(\prod W_i)^+e\), which the paper labels as \(e^Te\), but the product of a matrix and its pseudo-inverse is an orthogonal projection, not the identity. Strict positivity of the alignment is therefore not established by the algebra as written, though the conclusion may still hold for other reasons.
- The empirical success on tanh networks suggests the 90-degree alignment may hold more broadly than the linear-hidden-layer proof, but the proof itself does not cover nonlinear activations or minibatch training.
- The authors note that DRTP drives tanh activations toward saturation, which stops learning; this could be exploited deliberately to produce networks with binarized activations for efficient inference.
- Since the algorithmic benefit is clearest for fully-connected layers and the paper observes a bottleneck effect in convolutional layers, an interesting extension would be combining DRTP for fully-connected layers with local-error methods for convolutional layers.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes Direct Random Target Projection (DRTP), a learning rule for feedforward classifiers that replaces backpropagated error signals with fixed random projections of the one-hot target vector. Because the target vector is known at the start of the forward pass, DRTP removes the feedback pathway and the update-locking constraint of backpropagation. The paper gives a theoretical alignment argument in Supplementary Note 1 for networks with linear hidden layers, zero-initialized weights, and a single training example, and it supports the method with experiments on synthetic regression and classification tasks, MNIST, and CIFAR-10, comparing BP, FA, DFA, sDFA, and DRTP over 10 runs with reported standard deviations. Public code is provided.
Significance. If the central claim holds, DRTP is a significant contribution: it is a simple, purely feedforward alternative to backpropagation that addresses both weight transport and update locking, with demonstrated accuracy on MNIST and CIFAR-10 and a plausible hardware-cost argument supported by an independent implementation in [33]. The empirical evaluation is careful by the standards of the field: fixed train/test protocols, 10 trials, standard deviations, grid-selected learning rates, and publicly available code. The theoretical guarantee is not yet presented in a fully valid form as printed, but the gap is localized and correctable, and the empirical angle measurements provide substantial supporting evidence for the transfer of the idealized result to the actual tanh/minibatch experiments.
major comments (2)
- [Supplementary Note 1, Alignment step] The displayed derivation in the Alignment step is not valid as printed. The product of the forward matrices and its Moore-Penrose pseudo-inverse is labeled as the identity, but it is an orthogonal projection, not the identity. Strict positivity of the dot product can still be recovered from the earlier parts of the proof: for the rank-one matrix P = α s_WK^t (B_k^T y*)^T, we have e^T P P^+ e = (s_WK^{tT} e)^2 / ||s_WK^t||^2, and the positivity of s_WK^{tT} e follows from the previously shown sign agreement between s_WK^t and the error vector. This argument is absent, so the proof as written does not establish the claimed strict positivity; the gap is correctable but must be repaired in the final version.
- [Section 2.3 and Section 4] The theorem establishing the within-90-degree alignment is explicitly restricted to linear hidden layers, zero-initialized weights, and a single training example, while the headline classification experiments use He-initialized tanh networks trained with minibatches (Section 4, Tables 1 and 2). The paper should state clearly that the formal guarantee does not cover the evaluated setting and that the transfer to tanh/minibatch training rests on the empirical angle measurements in Figures 2, 3, S1, and S2. This is a scope-transfer gap rather than a contradiction of the empirical results, but it affects the strength of the central claim as worded.
minor comments (3)
- [Section 4, synthetic regression and classification] The sentence "the forward weights are drawn from a He uniform distribution and are zero-initialized for feedback-alignment-based algorithms" is ambiguous; please clarify which weight matrices are zero-initialized in the FA/DFA/sDFA/DRTP experiments.
- [Supplementary Note 1, network dynamics] The product notation ∏_{i=k+1}^K W_i^t is used for noncommuting matrices without specifying the multiplication order; please define it explicitly (for example, as W_K^t W_{K-1}^t ... W_{k+1}^t or the reverse).
- [Figure 4 and Supplementary Figure 3 captions] The captions could be clearer about which curves correspond to which algorithm; in particular, Supplementary Figure 3 plots three algorithms but the caption refers to them collectively as feedback-alignment-based.
Circularity Check
No circularity: the DRTP derivation is self-contained, the theory is proven from stated dynamics, and the empirical claims are external benchmarks.
full rationale
The derivation chain is not circular. DRTP is defined in Algorithm 1 as an update rule using fixed random projections B_k^T y* of the one-hot label, and the claim that targets are a proxy for the error sign is an exact algebraic identity for sigmoid/softmax outputs: y*_c = (1 + sign(e_c))/2, stated in Section 2.3. The theoretical alignment result in Supplementary Note 1 is a self-contained proof under explicit assumptions (linear hidden layers, zero-initialized weights, a single training example); it proves the lemma, derives the theorem from that lemma, and then derives the positive dot product. No step of that proof assumes the conclusion as an input, and no fitted parameter is renamed as a prediction. The empirical sections compare DRTP against BP, FA, DFA, sDFA and shallow learning on MNIST and CIFAR-10, with learning rates grid-searched per algorithm in the standard benchmarking sense; the test errors are measured outcomes, not quantities determined by construction. The only self-citation, [33], is an independent chip implementation measuring power and area overhead, which is real external evidence for the hardware-efficiency claim rather than a load-bearing self-citation chain. The paper also explicitly acknowledges limitations, including the convolutional bottleneck, tanh saturation, and the classification-specific derivation of DRTP, which further indicates that the claims are not manufactured. No circular step can be exhibited from the paper's equations or citation structure.
Assumptions & free parameters
free parameters (2)
- Per-algorithm learning rates =
5e-6 to 1.5e-2 depending on algorithm, dataset, network (Table 3)
- Synthetic data generation parameters =
n=256, ninf=128, 10 classes, 5 clusters/class, class_sep=4.5
assumptions (4)
- domain assumption For sigmoid/softmax output units, outputs are strictly between 0 and 1, so sign(e_c) = +1 for c=c* and -1 otherwise
- ad hoc to paper The alignment theorem assumes zero-initialized weights, linear hidden layers, and a single training example
- standard math Moore-Penrose pseudo-inverse and matrix algebra identities
- domain assumption Saturating activation functions (tanh) are required for DRTP to work; ReLU is not compatible
Cite this review
Pith. "Pith review of Learning without feedback: Fixed random learning signals allow for feedforward training of deep neural networks." pith.science (2026). https://pith.science/paper/J4EPQ3A3
@misc{pith2026190901311,
author = {Pith},
title = {Pith review of: Learning without feedback: Fixed random learning signals allow for feedforward training of deep neural networks},
year = {2026},
howpublished = {\url{https://pith.science/paper/J4EPQ3A3}},
note = {Machine review of arXiv:1909.01311}
}
read the original abstract
While the backpropagation of error algorithm enables deep neural network training, it implies (i) bidirectional synaptic weight transport and (ii) update locking until the forward and backward passes are completed. Not only do these constraints preclude biological plausibility, but they also hinder the development of low-cost adaptive smart sensors at the edge, as they severely constrain memory accesses and entail buffering overhead. In this work, we show that the one-hot-encoded labels provided in supervised classification problems, denoted as targets, can be viewed as a proxy for the error sign. Therefore, their fixed random projections enable a layerwise feedforward training of the hidden layers, thus solving the weight transport and update locking problems while relaxing the computational and memory requirements. Based on these observations, we propose the direct random target projection (DRTP) algorithm and demonstrate that it provides a tradeoff between accuracy and computational cost that is suitable for adaptive edge computing devices.
Figures
Forward citations
Cited by 1 Pith paper
-
Spiking Neural Predictive Coding for Continual Learning from Data Streams
A spiking predictive-coding network with a local, spike-triggered alignment rule achieves 4.72% error on MNIST in a single online pass and forgets less on split continual-learning benchmarks.
Reference graph
Works this paper leans on
-
[13]
Random synaptic feedback weigh ts support error backpropagation for deep learning,
T. P . Lillicrap et al., “Random synaptic feedback weigh ts support error backpropagation for deep learning,” Na- ture Communications, vol. 7, no. 13276, 2016
work page 2016
-
[33]
A 28-nm convolution al neuromorphic processor enabling online learning with spike-based retinas,
C. Frenkel, J.-D. Legat and D. Bol, “A 28-nm convolution al neuromorphic processor enabling online learning with spike-based retinas,” IEEE International Symposium on Circuits and Systems (ISCA S), 2020
work page 2020
-
[1]
F. Rosenblatt, Principles of neurodynamics: Perceptrons and the theory of brain mechanisms, Sparta, NJ, USA: Spartan Books, 1961
work page 1961
-
[2]
D. Bassett and E. D. Bullmore, “Small-world brain networ ks,” The Neuroscientist, vol. 12, no. 6, pp. 512-523, 2006
work page 2006
-
[3]
Steps toward artificial intelligence,
M. Minsky, “Steps toward artificial intelligence,” Proceedings of the IRE , vol. 49, no. 1, pp. 8-30, 1961
work page 1961
-
[4]
Learning repre sentations by back-propagating errors,
D. Rumelhart, G. Hinton and R. Williams, “Learning repre sentations by back-propagating errors,” Nature, vol. 323, pp. 533-536, 1986
work page 1986
-
[5]
ImageNet c lassification with deep convolutional neural networks,
A. Krizhevsky, I. Sutskever and G. E. Hinton, “ImageNet c lassification with deep convolutional neural networks,” Proc. of Advances in Neural Information Processing Systems (NeurIPS), pp. 1097-1105, 2012
work page 2012
-
[6]
Y . LeCun, Y . Bengio, and G. E. Hinton, “Deep learning,” Nature, vol. 521, no. 7553, p. 436, 2015. 14 Learning without feedback: Direct random target projectio n C. Frenkel, M. Lefebvre and D. Bol
work page 2015
Show all 49 references
-
[7]
Deep residual learning for image recogniti on,
K. He et al., “Deep residual learning for image recogniti on,” Proc. of IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 770-778, 2016
2016
-
[8]
Deep neural networks for acoustic mo deling in speech recognition,
G. E. Hinton et al., “Deep neural networks for acoustic mo deling in speech recognition,” IEEE Signal Processing Magazine, vol. 29, 2012
2012
-
[9]
Deep speech 2: End-to-end speech recog nition in english and mandarin,
D. Amodei et al., “Deep speech 2: End-to-end speech recog nition in english and mandarin,” Proc. of International Conference on Machine Learning (ICML) , vol. 173-182, 2016
2016
-
[10]
Competitive learning: From interactiv e activation to adaptive resonance,
S. Grossberg, “Competitive learning: From interactiv e activation to adaptive resonance,” Cognitive Science , vol. 11, no. 1, pp. 23-63, 1987
1987
-
[11]
Local learning in RRAM neural networ ks with sparse direct feedback alignment,
B. Crafton et al., “Local learning in RRAM neural networ ks with sparse direct feedback alignment,” IEEE/ACM International Symposium on Low Power Electronics and Desig n (ISLPED), 2019
2019
-
[12]
How important is weig ht symmetry in backpropagation?,
Q. Liao, J. Z. Leibo and T. Poggio, “How important is weig ht symmetry in backpropagation?,” Proc. of AAAI Conference on Artificial Intelligence , 2016
2016
-
[14]
Learning in the machine : Random backpropagation and the deep learning channel,
P . Baldi,P . Sadowski and Z. Lu, “Learning in the machine : Random backpropagation and the deep learning channel,” Artificial intelligence , vol. 260, pp. 1-35, 2018
2018
-
[15]
Direct feedback alignment provides learn ing in deep neural networks,
A. Nøkland, “Direct feedback alignment provides learn ing in deep neural networks,” Proc. of Advances in Neural Information Processing Systems (NeurIPS) , pp. 1037-1045, 2016
2016
-
[16]
The MNIST database of handwritt en digits,
Y . LeCun and C. Cortes, “The MNIST database of handwritt en digits,” 1998 [Online]. Available: http://yann.lecun.com/exdb/mnist/
1998
-
[17]
Krizhevsky, Learning multiple layers of features from tiny images , Technical Report, University of Toronto, 2009
A. Krizhevsky, Learning multiple layers of features from tiny images , Technical Report, University of Toronto, 2009
2009
-
[18]
Towards deep learning with segregated dendrites,
J. Guerguiev, T. P . Lillicrap and A. Richards, “Towards deep learning with segregated dendrites,” ELife, vol. 6, no. e22901, 2017
2017
-
[19]
Event-driven random back-propagati on: Enabling neuromorphic deep learning machines,
E. Neftci et al., “Event-driven random back-propagati on: Enabling neuromorphic deep learning machines,” Fron- tiers in Neuroscience, vol. 11, no. 324, 2017
2017
-
[20]
Learning by the dendritic pre diction of somatic spiking,
R. Urbanczik and W . Senn, “Learning by the dendritic pre diction of somatic spiking,” Neuron, vol. 81, no. 3, pp. 521-528, 2014
2014
-
[21]
Difference target propagation,
D. H. Lee et al., “Difference target propagation,” in Proc. of Springer Joint European Conference on Machine Learning and Knowledge Discovery in Databases , pp. 498-515, 2015
2015
-
[22]
Biologically motivated algo rithms for propagating local target representations,
A. G. Ororbia and A. Mali, “Biologically motivated algo rithms for propagating local target representations,” Proceedings of the AAAI Conference on Artificial Intelligen ce, vol. 33, pp. 4651-4658, 2019
2019
-
[23]
Decoupled neural interfaces usin g synthetic gradients,
M. Jaderberg et al., “Decoupled neural interfaces usin g synthetic gradients,” Proc. of International Conference on Machine Learning (ICML) , vol. 70, pp. 1627-1635, 2017
2017
-
[24]
Understanding synthetic gradien ts and decoupled neural interfaces,
W . Czarnecki et al., “Understanding synthetic gradien ts and decoupled neural interfaces,” Proc. of International Conference on Machine Learning (ICML) , vol. 70, pp. 904-912, 2017
2017
-
[25]
Deep superv ised learning using local errors
H. Mostafa, V . Ramesh and G. Cauwenberghs, “Deep superv ised learning using local errors”, Frontiers in Neu- roscience, vol. 12, no. 608, 2018
2018
-
[26]
Synaptic plastici ty dynamics for deep continuous local learning (DECOLLE),
J. Kaiser, H. Mostafa and E. Neftci, “Synaptic plastici ty dynamics for deep continuous local learning (DECOLLE),” Frontiers in Neuroscience, vol. 14, no. 424, 2018
2018
-
[27]
Training neural networks w ith local error signals
A. Nøkland and L. H. Eidnes, “Training neural networks w ith local error signals”, Proc. of International Confer- ence on Machine Learning (ICML) , 2019
2019
-
[28]
Decouple d greedy learning of CNNs,
E. Belilovsky, M. Eickenberg and E. Oyallon, “Decouple d greedy learning of CNNs,” arXiv preprint arXiv:1901.08164, 2019
1901 arXiv
-
[29]
ImageNet: A large-scale hierarchical i mage database,
J. Deng et al., “ImageNet: A large-scale hierarchical i mage database,” Proc. of IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 248-255, 2009
2009
-
[30]
Can we connect trill ions of IoT sensors in a sustainable way? A technol- ogy/circuit perspective,
D. Bol, G. de Streel and D. Flandre, “Can we connect trill ions of IoT sensors in a sustainable way? A technol- ogy/circuit perspective,” Proc. of IEEE SOI-3D-Subthreshold Microelectronics T echn ology Unified Conference (S3S), 2015
2015
-
[31]
Obstacle avoidance and target acqui sition for robot navigation using a mixed signal ana- log/digital neuromorphic processing system,
M. B. Milde et al., “Obstacle avoidance and target acqui sition for robot navigation using a mixed signal ana- log/digital neuromorphic processing system,” Frontiers in Neurorobotics, vol. 11, no. 28, 2017. 15 Learning without feedback: Direct random target projectio n C. Fren...
2017
-
[32]
Assessing the scalability of biolo gically-motivated deep learning algorithms and architec- tures,
S. Bartunov et al., “Assessing the scalability of biolo gically-motivated deep learning algorithms and architec- tures,” Proc. of Advances in Neural Information Processing Systems (NeurIPS), pp. 9368-9378, 2018
2018
-
[34]
A 0.086-mm 2 12.7-pJ/SOP 64k-synapse 256-neuron online-learning digi tal spiking neuro- morphic processor in 28-nm CMOS,
C. Frenkel et al., “A 0.086-mm 2 12.7-pJ/SOP 64k-synapse 256-neuron online-learning digi tal spiking neuro- morphic processor in 28-nm CMOS,” IEEE Transactions on Biomedical Circuits and Systems , vol. 13, no. 1, pp. 145-158, 2019
2019
-
[35]
MorphIC: A 65-nm 738 k-synapse/mm2 quad-core binary-weight digital neuromorphic processor with stochastic spike-driven onli ne learning
C. Frenkel, J.-D. Legat and D. Bol, “MorphIC: A 65-nm 738 k-synapse/mm2 quad-core binary-weight digital neuromorphic processor with stochastic spike-driven onli ne learning”, IEEE Transactions on Biomedical Circuits and Systems, vol. 13, no. 5, pp. 999-1010 2019
2019
-
[36]
Batch normalization: Acceler ating deep network training by reducing internal covariate shift,
S. Ioffe and C. Szegedy, “Batch normalization: Acceler ating deep network training by reducing internal covariate shift,” arXiv preprint arXiv1502.03167, 2015
2015 arXiv
-
[37]
Scikit-learn: Machine Learning i n Python
F. Pedregosa et al., “Scikit-learn: Machine Learning i n Python”, Journal of Machine Learning Research (JMLR), vol. 12, pp. 2825-2830, 2011
2011
-
[38]
Delving deep into rectifiers: Surpassing h uman-level performance on ImageNet classification,
K. He et al., “Delving deep into rectifiers: Surpassing h uman-level performance on ImageNet classification,” Proc. of IEEE International Conference on Computer Vision ( ICCV), pp. 1026-1034, 2015
2015
-
[39]
Computing’s energy problem (and what we c an do about it),
M. Horowitz, “Computing’s energy problem (and what we c an do about it),” Proc. of IEEE International Solid- State Circuits Conference (ISSCC), pp. 10-14, 2014
2014
-
[40]
Synaptic plasticity fo rms and functions,
J. C. Magee and C. Grienberger, “Synaptic plasticity fo rms and functions,” Annual review of neuroscience , vol. 43, pp. 95-117, 2020
2020
-
[41]
Large-scale neuromorphic spiking array processors: A quest to mimic the brain,
C. S. Thakur et al., “Large-scale neuromorphic spiking array processors: A quest to mimic the brain,” Frontiers in Neuroscience, vol. 12, no. 891, 2018
2018
-
[42]
Low-Power Neuromorphic Hardware for Signal Processing Applications
B. Rajendran et al., “Low-Power Neuromorphic Hardware for Signal Processing Applications”, IEEE Signal Processing Magazine, 2019
2019
-
[43]
Synaptic modifications in cultur ed hippocampal neurons: Dependence on spike timing, synaptic strength, and postsynaptic cell type,
G. G. Bi, and M. M. Poo, “Synaptic modifications in cultur ed hippocampal neurons: Dependence on spike timing, synaptic strength, and postsynaptic cell type,” Journal of Neuroscience, vol. 18, no. 24, pp. 10464-10472, 1998
1998
-
[44]
Learning real-world s timuli in a neural network with spike-driven synaptic dynamics,
J. M. Brader, W . Senn and S. Fusi, “Learning real-world s timuli in a neural network with spike-driven synaptic dynamics,” Neural Computation, vol. 19, no. 11, pp. 2881-2912, 2007
2007
-
[45]
Neural and synaptic array transce iver: A brain-inspired computing framework for embedded learning,
G. Detorakis et al., “Neural and synaptic array transce iver: A brain-inspired computing framework for embedded learning,” Frontiers in Neuroscience, vol. 12, no. 583, 2018
2018
-
[46]
A 65-nm neuromorphic image c lassification processor with energy-efficient training through direct spike-only feedback,
J. Park, J. Lee and D. Jeon, “A 65-nm neuromorphic image c lassification processor with energy-efficient training through direct spike-only feedback,” IEEE Journal of Solid-State Circuits , vol. 55, no. 1, pp. 108-119, 2019
2019
-
[47]
Principled Trainin g of Neural Networks with Direct Feedback Alignment
J. Launay, I. Poli and F. Krzakala, “Principled Trainin g of Neural Networks with Direct Feedback Alignment”, arXiv preprint arXiv:1906.04554, 2019
1906 arXiv
-
[48]
Diverse synaptic plasticity mechanisms orchestrated to form and retrieve memories in spiking neural networks
F. Zenke, E. J. Agnes and W . Gerstner, “Diverse synaptic plasticity mechanisms orchestrated to form and retrieve memories in spiking neural networks”, Nature Communications, vol. 6, no. 6922, 2015
2015
-
[49]
Automatic differentiation in PyTorc h
A. Paszke et al., “Automatic differentiation in PyTorc h”, 31st Annual Conference on Neural Information Process- ing Systems (NeurIPS) W orkshop, 2017. 16 Learning without feedback: Direct random target projectio n C. Frenkel, M. Lefebvre and D. Bol A B Supplementary Figure 1:...
2017
Reviewed August 14, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.