REVIEW 4 major objections 5 minor 1 cited by
A Neural Network Training Method Based on Distributed PID Control
T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read The paper claims that a symmetric differential-equation neural network can be trained without backpropagation, using forward and reverse signal integrals plus distributed PID control, with faster training and improved accuracy on MNIST.
desk verdict A clear, honest description of an unvalidated training heuristic for the author's symmetric differential-equation network; the PID framing is new, but the central accuracy claim is not supported by the evidence presented. 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 load-bearing object is the Wuxing neural network, a system of five fully symmetric differential equations (Eq. 2.2) whose symmetry makes signal propagation reversible: the inverse system (Eq. 3.1) preserves the causal links between elements, which is what lets a neuron pair forward and backward signals. Training uses the fixed point B0 = (K1 − K2)/K3 to define the zero state, and the correlation variable G1 (Eq. 3.6) — the product of the time integrals of the forward output D(t) and the reverse output D̂(t) — as the raw parameter-adjustment signal. G1 is bounded by an arctangent function (Eq. 3.7) and applied multiplicatively and exponentially (Eq. 3.8/4.10). The distributed PID control maps the three parameter sets to three control modes: integral accumulation for K1, differential input-node gating for K2, and proportional fixed-point adjustment for K3.
What would settle it
Take the same update rule and replace the forward/reverse integrals with randomized values of the same magnitude; if MNIST accuracy still rises, the correlation signal is not the cause of learning. Alternatively, compute the true gradient of the classification loss with respect to K3 on a small subnetwork and compare its sign with the sign of the updates produced by exp(−atan(G1_k3 · kt)/kt); frequent sign disagreement would show the proxy is not tracking descent.
Extended reading notes
Core claim
The paper's central claim is that the update K3_new = K3_old · exp(−atan(G1_k3 · kt)/kt), where G1_k3 = ∫₀ᵀ D(t)dt · ∫₀ᵀ D̂(t)dt is the product of forward and reverse signal integrals, gives a working parameter-adjustment law for the symmetric differential-equation network. The same exponential-atan structure is used for K1 with an integral-mode accumulation and for K2 with a differential-mode gating by input nodes. The author argues that this preserves the point-to-point causality of backpropagation — reversibility replaces the chain rule — and that the distributed PID framing resolves the redundancy problem that arises when K1 and K3 are adjusted at the same time. The empirical claim is that on MNIST the PID combination improves both speed and accuracy relative to the earlier single-parameter training.
Load-bearing premise
The method works only if the product of the time-integrated forward signal and the time-integrated reverse error signal tells a neuron the right direction and size for updating a parameter; the paper assumes this correlation acts like a useful gradient signal without deriving it from the equations.
Editorial extensions
If this is right
- If the central claim is right, a backpropagation-free rule based only on local forward/reverse signal products can train a continuous-time differential-equation network on a real image task.
- The reversibility of the network is what does the work that the chain rule does in backpropagation, so any architecture that is constructed to be symmetric and reversible can in principle use the same training scheme.
- The PID decomposition provides a concrete answer to the parameter-redundancy problem: the three parameter sets are not interchangeable, and assigning them integral, differential, and proportional roles is what stabilises combined training.
- On MNIST, the paper's reported accuracy curves show that combined integral-plus-proportional control reaches higher accuracy than adjusting K3 alone, giving a baseline for future biologically inspired training methods.
- The paper's observation that the differential mode is unstable matches known PID behaviour, so standard PID tuning ideas become available for neural-network training.
Reading between the lines
- Beyond the paper: if the G1 correlation really behaves like a signed gradient proxy, the same update law could be applied to any dynamical system whose forward and reverse propagators are inverses, not just five-element Wuxing systems.
- Beyond the paper: the time-integral form of G1 suggests that training depends on the settling window T; a testable extension would be to anneal T during training and check whether accuracy and stability improve.
- Beyond the paper: the assignment of one control mode per parameter set is a design choice, and alternative assignments (for example, swapping the roles of K1 and K3) could be probed on the same MNIST setup to map the control landscape.
- Beyond the paper: because the method is local by construction, it could be combined with neuromorphic or continuous-time hardware where global gradient signals are unavailable, but the paper does not demonstrate this.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes a training method for the Wuxing neural network, a network architecture based on symmetric differential equations introduced in the author's prior preprint. The proposed method replaces backpropagation with forward and reverse signal propagation through the network, and then applies a distributed Proportional-Integral-Derivative (PID) control scheme to update three parameter sets K1, K2, K3. The update rules are based on a correlation variable G1 defined from time integrals of forward and reverse deviation signals, transformed by an arctangent function and applied as multiplicative exponential factors. The author reports experiments on MNIST, claiming faster training and improved accuracy. The paper also motivates the method as biologically plausible because each neuron adjusts parameters using only local forward and reverse signals.
Significance. If the central claim were substantiated, the paper would offer a backpropagation-free, locally controlled training rule for a continuous-time symmetric network, which could be of interest to researchers in biologically plausible learning and control-based optimization. The manuscript does make its update equations explicit and acknowledges some limitations, such as the instability of the differential control component. However, the central claim is not currently supported: the correlation-based update lacks a theoretical foundation, and the experimental validation is minimal, with no baseline, no error bars, and no clear test set performance. The paper also depends on unverified properties of the Wuxing network from a prior preprint, and the full distributed PID method described in the abstract is not actually tested.
major comments (4)
- [Section 3.2 and Section 4.3 (Eqs. 3.6-3.8 and 4.8-4.10)] The update rule for K3 is K3_new = K3_old * exp(-G2_k3), where G2_k3 = atan(G1_k3 * kt)/kt and G1_k3 is the product of the time integrals of the forward and reverse deviation signals. This rule is asserted without any derivation from an objective function; there is no proof that the sign or magnitude of G1 is correlated with a decrease in classification error, and no convergence or stability analysis is provided. Because every parameter update in the paper uses this same correlation heuristic, this missing justification is load-bearing for the entire training method.
- [Section 4.1 and Figures 3 and 5] The experiments compare only variants of the same heuristic (adjusting K3 alone vs. K1 and K3, or different combinations of the PID strategies). There is no baseline such as standard backpropagation, no random-update or ablated correlation control, no error bars, no indication of the number of independent runs, and no clear statement of whether reported accuracy is on training or test data. The abstract's claim of faster training and improved accuracy is therefore not evaluable from the reported experiments.
- [Section 2.2 and Section 3.1] The fixed point B0 = (K1 - K2)/K3 in Eq. 2.3 is derived under the assumption that the parameters within each K set are equal. Training updates make these parameters unequal, and the statement in Section 2.2 that the adjustment method remains effective in that regime is asserted without proof. Additionally, the reversibility of the system, which is the foundation of the proposed training method, is inherited from reference [1] and is not independently derived or verified here. Both properties are essential to the method's claimed validity.
- [Section 4.3, Figure 5] The text states that in actual operation the differential control strategy was not enabled simultaneously with the other strategies 'mainly because the differential method has great instability.' Since the abstract and introduction claim a distributed PID control approach, the experiments do not actually validate the full PID method; they validate only the integral and proportional components (or combinations) under an unspecified enabling schedule. This gap directly affects the central claim.
minor comments (5)
- [Equation (3.2)] The variable 'Leb' is used without definition; it should be stated explicitly whether this is a Lebesgue integral notation or an abbreviation for a cumulative signal measure.
- [Section 4.1] The text says 'The method of adjusting K1 can refer to formula 3.5,' but Eq. 3.5 defines D_hat(t), not an update rule; the cross-reference should be corrected or expanded.
- [Figures 3 and 5] The y-axis label 'Correct percentage' is inconsistent with the text's use of 'accuracy rate'; the figures should state clearly whether these are training accuracies, test accuracies, or validation accuracies.
- [Equation (2.2)] The notation in Eq. 2.2 is garbled (e.g., '0 0 1 00 002' and the superscripted offset 'E^{-1}'), making it hard to parse the intended differential equations; a rewrite with explicit indices would improve readability.
- [Section 5] The statement that 'we have identified four other effective training strategies' is unverifiable because no details, results, or references are provided.
Circularity Check
No significant circularity: the training rule is an unproven heuristic, but MNIST accuracy is an external metric and no claim reduces to its own inputs.
full rationale
The paper's central update rule (Eq. 3.6–3.8, restated as Eq. 4.8–4.10) is presented as a proposed training method, not as a derivation from a loss function. G1 is defined as the dot product of forward and reverse signal integrals, and the parameter update K3_new = K3_old * exp(-G2) is posited and then evaluated empirically on MNIST. The accuracy metric (Eq. 3.2 and the target comparison in Eqs. 3.3–3.4) is external to the update rule, so the reported improvement is not the update rule by construction. The reversibility premise is asserted via the symmetric equations given in Section 2 rather than imported solely from the author's prior preprint, and the paper explicitly states that the PID design 'is not the only one,' so no uniqueness theorem is invoked. The PID labels are descriptive of arithmetic operations (summation for integral, input-node masking for differential, direct product for proportional). The admitted limitations—no proof that G1 is a valid descent signal, no backpropagation baseline, and the statement 'We have no plans to discuss these issues in this article'—are evidence gaps, not circular reductions. No fitted parameter is relabeled as a prediction, and no load-bearing claim collapses into a self-citation chain. Therefore, no significant circularity is found.
Assumptions & free parameters
free parameters (4)
- kt (adjustment parameter) =
not reported
- target1 and target2 =
not reported
- initial K1, K2, K3 values =
K1=1, K2=0.5, K3=0.5
- network architecture =
784, 839, 283, 96, 32, 10
assumptions (4)
- domain assumption The Wuxing differential equation system is completely symmetric and reversible, allowing backward signal propagation to trace causal effects.
- ad hoc to paper The fixed point B0 = (K1 - K2)/K3, derived under the assumption that parameters within each K set are equal, remains an effective adjustment target when parameters are unequal.
- ad hoc to paper The product or sum of forward and reverse signal integrals, G1, is a meaningful measure of how a parameter should change.
- domain assumption Standard PID control concepts transfer to parameter updates inside this closed system.
Cite this review
Pith. "Pith review of A Neural Network Training Method Based on Distributed PID Control." pith.science (2026). https://pith.science/paper/HB63FYP6
@misc{pith2026241114468,
author = {Pith},
title = {Pith review of: A Neural Network Training Method Based on Distributed PID Control},
year = {2026},
howpublished = {\url{https://pith.science/paper/HB63FYP6}},
note = {Machine review of arXiv:2411.14468}
}
read the original abstract
In the previous article, we introduced a neural network framework based on symmetric differential equations. This novel framework exhibits complete symmetry, endowing it with perfect mathematical properties. While we have examined some of the system's mathematical characteristics, a detailed discussion of the network training methodology has not yet been presented. Drawing on the principles of the traditional backpropagation algorithm, this study proposes an alternative training approach that utilizes differential equation signal propagation instead of chain rule derivation. This approach not only preserves the effectiveness of training but also offers enhanced biological interpretability. The foundation of this methodology lies in the system's reversibility, which stems from its inherent symmetry,a key aspect of our research. However, this method alone is insufficient for effective neural network training. To address this, we further introduce a distributed Proportional-Integral-Derivative (PID) control approach, emphasizing its implementation within a closed system. By incorporating this method, we achieved both faster training speeds and improved accuracy. This approach not only offers novel insights into neural network training but also extends the scope of research into control methodologies. To validate its effectiveness, we apply this method to the MNIST dataset, demonstrating its practical utility.
Figures
Forward citations
Cited by 1 Pith paper
-
A Neural Network Training Method Based on Neuron Connection Coefficient Adjustments
A backward signal propagation rule updates connection coefficients in the Wuxing neural network, but the MNIST validation lacks quantitative results and reproducibility.
Reference graph
Works this paper leans on
-
[1]
Introduction In previous research, we proposed a novel neur al network architecture that integrates the symmetrical Five Elements (Wuxing) Theory with the asymmetrical predator-prey equation, resulting in a set of fully symmetrical differential equations [1]. This complete symmetry endows the system with favorable mathematical properties, such as the abil...
-
[2]
For more details, please refer to our previous article[1]
Wuxing neural network In this section, we will briefly introduce the Wuxing neural network structure, fixed point calculation, and signal propagation method. For more details, please refer to our previous article[1]. 2.1 Wuxing neural network differential equations Traditional neural networks can generally be divided into two categories: those based on ma...
-
[3]
Training Wuxing neural network In this section, we will introduce how to use differential equations for signal propagation and achieve point-to-point parameter adjustment. 3.1 Training theory In neural network training, the traditional backpropagation algorithm has been highly successful. Despite ongoing doubts regarding its biological plausibility, no al...
-
[4]
Distributed PID Control In this section, we will discuss how to implement distributed PID control in closed systems to address parameter redundancy issues encountered in neural network training. 4.1 Redundant parameter adjustment In the Wuxing neural network, there are three sets of parameters 𝐾𝐾1 , 𝐾𝐾2 and 𝐾𝐾3 ; in previous studies, we only gave the meth...
-
[5]
Summary In this paper, we present a novel training method for the Wuxing neural network, incorporating innovations in both mathematics and biology. From a mathematical perspective, we propose the use of differential equations in place of chain derivation to address the one -to-one correspondence between parameters and outcomes. From a biological standpoin...
-
[6]
A Neural Network Framework Based on Symmetric Differential Equations
Jiang, K. A Neural Network Framework Based on Symmetric Differential Equations. 2024. DOI: http://dx.doi.org/10.12074/202410.00055
arXiv 2024
-
[7]
arXiv preprint arXiv:2212.13345, 2022
Hinton, G., The forward -forward algorithm: Some preliminary investigations. arXiv preprint arXiv:2212.13345, 2022
arXiv 2022
-
[8]
Ang, K.H., G. Chong, and Y. Li, PID control system analysis, design, and technology. IEEE transactions on control systems technology, 2005. 13(4): p. 559-576
work page 2005
Show all 13 references
-
[9]
Proceedings of the national academy of sciences, 1982
Hopfield, J.J., Neural networks and physical systems with emergent collective computational abilities. Proceedings of the national academy of sciences, 1982. 79(8): p. 2554-2558
1982
-
[10]
Chua, L.O. and L. Yang, Cellular neural networks: Theory. IEEE Transactions on circuits and systems, 1988. 35(10): p. 1257-1272
1988
-
[11]
Takabe, and M
Aihara, K., T. Takabe, and M. Toyoda, Chaotic neural networks. Physics letters A, 1990. 144(6-7): p. 333-340
1990
-
[12]
Lombana, D.A.B. and M. Di Bernardo, Distributed PID control for consensus of homogeneous and heterogeneous networks. IEEE Transactions on Control of Network Systems, 2014. 2(2): p. 154-163
2014
-
[13]
Åström, K.J. and T. Hägglu nd, The future of PID control. Control engineering practice,
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.