REVIEW 3 major objections 6 minor 41 references
Optimizing Basis Function Selection in Constructive Wavelet Neural Networks and Its Applications
T0 review · 3 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read The paper claims that a constructive wavelet neural network can estimate an unknown function's dominant frequency from data and then add only high-energy wavelet bases, reaching a preset accuracy with fewer parameters than a generic…
desk verdict A useful two-step constructive WNN idea with real parameter savings on its examples, but the efficiency claim leans on an unproved locality assumption that the experiments never stress. 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 enlarged time-frequency box $B_\varepsilon(T,\Omega_0,\Omega_1)$: an orthonormal wavelet $\psi_{mn}$ with scale $m$ and translation center $n$ is kept only when $2^m$ lies inside the extended frequency band and $|n| \preceq 2^m T + t_\varepsilon$. Corollary 1 says wavelets outside this box have nearly zero coefficients, so the basis-expansion loop can skip them. The energy estimates $\hat E_m$ are computed from the data by training coefficients with one neural-network pass per subspace, then smoothing them with an exponential moving average ($\alpha$ chosen from the target accuracy $\varepsilon$) so the algorithm can stop at the first resolution where the smoothed energy stops rising. The separation factor $\mu$ in Algorithm 2 controls how aggressively the highest-energy bases at the current resolution are used to select the next-resolution bases.
What would settle it
Construct a test function on a bounded interval whose wavelet-subspace energies have two well-separated and comparable peaks, for instance a sum of two sinusoids with frequencies several octaves apart and similar amplitudes; run Algorithm 1 and check whether it stops at the lower peak while Algorithm 2 then needs more bases than a standard wavelet neural network to reach the same accuracy.
Extended reading notes
Core claim
For functions in $L^2(\mathbb{R}^d)$ whose energy is concentrated in a finite time-frequency box, the paper proves an approximation bound (Theorem 1): truncating the wavelet expansion to an enlarged box $B_\varepsilon$ costs at most the energy of the function outside the box plus $2(2\pi)^{d/2}\varepsilon\|f\|$. Corollary 1 then states that every wavelet coefficient whose time-frequency center lies outside $B_\varepsilon$ is essentially zero at accuracy $\varepsilon$. The paper's constructive wavelet neural network turns this into a practical recipe: Algorithm 1 estimates the subspace energies $\hat E_m$ with one-pass coefficient updates and an exponential moving average to select the initial frequency, and Algorithm 2 repeatedly adds the highest-energy bases from the next resolution level until the loss falls below $\varepsilon$. The central claim is that this frequency-aware construction reaches the target accuracy with far fewer bases than a standard wavelet neural network, because the omitted bases are exactly the ones whose coefficients are near zero.
Load-bearing premise
The load-bearing premise is Assumption 2: the energy of the unknown function projected onto wavelet subspaces rises and then falls with resolution, so the first time the smoothed energy stops increasing the algorithm has already found the dominant frequency; if the energy has several comparable peaks, early stopping can miss the main spectral content.
Editorial extensions
If this is right
- For any square-integrable mapping whose energy concentrates in a finite time-frequency box, Theorem 1 justifies dropping every wavelet basis outside an enlarged box without exceeding the target error, apart from energy leaked outside the box plus a small constant times $\|f\|$.
- Starting the network at the estimated dominant frequency should avoid both slow convergence from a too-low starting frequency and wasted bases from a too-high one.
- Because the wavelet bases are orthogonal, newly added bases do not disturb already-trained coefficients, so the incremental structure can expand without full retraining.
- The framework is claimed to work in offline, combined-dataset, online time-varying, and nine-dimensional real-data settings, implying the frequency-estimation step transfers across those regimes.
- The parameter counts reported in Examples 1 and 4 give the concrete promise: 174 versus 420 parameters on the synthetic mapping, and 1,510 versus 39,366 on the milling regression.
Reading between the lines
- If the unimodality assumption fails, a practical extension would be to run Algorithm 1's energy scan from both low and high resolutions and keep the higher-energy peak, which would catch multimodal spectra instead of stopping at the first local peak.
- The same energy-first selection principle should transfer to other dictionaries such as Fourier packets, curvelets, or shearlets whenever an analogue of the time-frequency box and a coefficient decay estimate exist.
- On the milling dataset, the random 80/20 split probably overstates generalization because tool-wear observations are autocorrelated within each trial; a trial-wise split that trains on some machining configurations and tests on unseen ones would provide a sharper test of the claimed parameter savings.
- The complexity argument would be stronger with a demonstration that the estimated initial frequency remains reliable as the input dimension grows beyond nine, since the per-dimension parameter cost is the main scaling bottleneck.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes a constructive wavelet neural network (CWNN) for approximating unknown nonlinear mappings with a preset accuracy. The method has two components: Algorithm 1 estimates the dominant frequency of the unknown function by projecting data onto wavelet subspaces and estimating subspace energies; Algorithm 2 starts from the estimated initial resolution and adds wavelet bases in the next resolution that are nearest to current high-energy translation centers, stopping when the training loss falls below epsilon. The theoretical part (Theorem 1, Corollary 1) states that, under energy concentration in a time-frequency box, wavelets outside an epsilon-expanded box have negligible coefficients. Four experiments compare the CWNN with standard WNN and fixed GNN baselines on synthetic and real milling data and report a reduced parameter count.
Significance. If the parameter-reduction claim is established, the framework would be a useful practical contribution to constructive wavelet networks. The paper supplies a clean statement of the time-frequency truncation result, and the four examples address offline, multi-dataset, online time-varying, and real-world settings, with the real milling benchmark being a reasonable test. It also provides a code-release link and a direct comparison against standard WNN and several GNN baselines. However, the paper's central efficiency claim is not backed by an end-to-end guarantee: the theoretical truncation result concerns the full set of bases in a known time-frequency box, whereas the algorithm selects bases via local energy heuristics. The current experiments use smooth functions whose significant scale content is co-located, so they do not exercise the main risk identified below.
major comments (3)
- [IV-C, Eq. (27)] The basis-expansion rule selects the two nearest W_{m+1} centers around each high-energy W_m center. Corollary 1 does not justify this locality assumption: it only bounds the total energy of coefficients with centers outside B_epsilon and says nothing about where the large coefficients inside B_epsilon lie. For a function with a low-frequency bump at one location and a high-frequency bump at a distant location, Step 2 adds next-scale bases near the low-frequency region and misses the high-energy next-scale bases; the outer loop eventually repairs this only by adding many extra bases, negating the reported parameter reduction. Remark 8 and Example 3 do not address this case: the frequency shift in Example 3 is a change over time of the whole mapping, not spatially separated scale-dependent energy. Please provide a theorem or a dedicated experiment for spatially separated multiscale content before claiming the efficiency result.
- [III, Algorithm 1, Assumption 2] Algorithm 1's stopping rule assumes E_m is unimodal in m; if E_m is multimodal, the EMA rule can stop at a local peak and select an initial frequency that misses the dominant spectral content. Assumption 2 is not proved, and the unimodality evidence is a single function in Example 1 (Fig. 5(b)). Since the initial frequency feeds Algorithm 2 and strongly affects the parameter count, the efficiency claim depends on this assumption. Please either prove a sufficient condition, show that the algorithm is robust to multimodal E_m with a dedicated experiment, or characterize the failure mode.
- [IV, Theorem 1 and Corollary 1 vs Algorithm 2] The theoretical result bounds the error incurred by omitting all wavelets outside a specified B_epsilon, assuming the concentration box [-T,T] x ([Omega_0,Omega_1] union [-Omega_1,-Omega_0]) is known. Algorithm 2 does not construct B_epsilon and does not use T, Omega_0, Omega_1; it selects bases by thresholding estimated energies and by nearest-neighbor proximity. No argument is given that the bases selected by Algorithm 2 form a superset of the significant bases inside B_epsilon or that the Theorem 1 error bound applies to the algorithm's output. Consequently the statement in the conclusion that the approximation error is bounded by the function's energy and the number of wavelet bases is not connected to the implemented algorithm.
minor comments (6)
- [III, Algorithm 1 and IV-C] Equation (42) is used in Algorithm 1 Step 1, Step 2, and in Algorithm 2 before it is defined in Appendix C; the energy-estimate definition should be moved to the main text and the cross-references renumbered.
- [II-C and Appendix B] The example in Section II-C refers to 'conditions (4), (35), and (36)' and 'Using (34)', but the conditions are (4)-(6) and the construction is (7); the Appendix numbering (33)-(36) is inconsistent with the main text.
- [I and VII] The introduction and the conclusion mention 'five numerical examples' and 'five simulation examples', while Section V presents four examples (Examples 1-4); the counts should be reconciled.
- [IV, Remarks 5 and 6] Remarks 5 and 6 give inconsistent guidance for the termination threshold: Remark 5 recommends 0.01 epsilon to 0.001 epsilon, while Remark 6 says zeta should be '10 times smaller' than the desired accuracy; please reconcile the two recommendations.
- [IV-C, Step 3 and Algorithm 2] The prose around Step 3 of Algorithm 2 describes selection of N_{2 mu E_m} bases after one network run, but the pseudocode uses an outer loop with mu_up incremented by mu; the description and pseudocode should be aligned.
- [III, Eqs. (11)-(12)] The empirical mapping from epsilon to alpha is written as alpha = 2 arctan(-lg epsilon)/pi in Eq. (11), but Eq. (12) and the surrounding text use arctan(-lg epsilon) together with pi/2 factors in a way that is not consistent with Eq. (11); the derivation should be cleaned up.
Circularity Check
No circular derivation: the core bound is an external-frame estimate under explicit assumptions, and the basis-selection heuristic is a correctness concern, not circularity.
full rationale
After tracing the derivation chain, I find no step where an output quantity is identical by construction to an input, or where a fitted parameter is relabeled as a prediction. The theoretical core (Theorem 1 and Corollary 1) is an approximation bound for orthonormal wavelet frames: it assumes L2 membership (Assumption 1), unimodal subspace energy (Assumption 2), and time-frequency concentration (Assumption 3), and proves that coefficients outside a sufficiently enlarged box B_epsilon are small using Lemma 1 from an external frame estimate ([31], itself parameter-free). The reduction from Theorem 1 to Corollary 1 is a direct norm argument, not a restatement of the algorithm's selection rule. Algorithm 1 estimates subspace energies from training data and picks m_init; Algorithm 2 then adds bases nearest to currently high-energy centers via Eq. (27). This nearest-neighbor locality rule is a heuristic justified by Mallat-Hwang regularity ([30]) rather than derived from Corollary 1, and it could fail for spatially separated scale-dependent content; but a false or unproved heuristic is a correctness risk, not circularity. The reported parameter reductions (e.g., 174 vs 420 in Example 1; 1,510 vs 39,366 in Example 4) are comparisons on training/test splits after the same data-driven fitting procedure, so they are empirical outcomes. Self-citations [38], [40], [41] occur in application and context discussions and do not carry the derivation. Limitations are openly stated: Assumption 2 is justified only by Remark 1 and one simulation, and Remark 8 admits that non-stationary frequency handling has no detailed analysis. These weaken generality but do not make the argument circular.
Assumptions & free parameters
free parameters (6)
- hyperparameter κ =
0.36 (Examples 1 and 3), 2/3 (Example 4)
- learning rate ιr =
0.0005 (Example 1), 0.0001 (Example 3), 0.001 (Example 4)
- EMA parameter α =
Set through the empirical rule α = 2 arctan(-lg ε) / π (equation 11)
- separation factor µ =
1/3 in most experiments; scanned from 1/5 to 1/2 in Example 1
- termination threshold ζ =
0.00004 in all experiments
- target accuracy ε =
0.006 (D1, D2), 0.025 (D3), 0.02 (Example 3), 0.015 (Example 4)
assumptions (6)
- domain assumption The unknown function f is square-integrable over Rd or over a compact domain D (Assumption 1).
- ad hoc to paper The wavelet-subspace energy Em is unimodal with respect to resolution m (Assumption 2).
- domain assumption The energy of f is concentrated in a finite time-frequency box [−T,T] × ([Ω0,Ω1] ∪ [−Ω1,−Ω0]) (Assumption 3).
- standard math The mother wavelet ψ is generated from a function φ satisfying conditions (4)-(6), yielding an orthonormal wavelet frame.
- domain assumption The wavelet transform regularity property from [30] justifies choosing translation centers in Wm+1 near those in Wm.
- ad hoc to paper The empirical EMA rule (11) maps ε to α and is sufficient to detect the main energy peak.
Cite this review
Pith. "Pith review of Optimizing Basis Function Selection in Constructive Wavelet Neural Networks and Its Applications." pith.science (2026). https://pith.science/paper/K47K5DBP
@misc{pith2026250709213,
author = {Pith},
title = {Pith review of: Optimizing Basis Function Selection in Constructive Wavelet Neural Networks and Its Applications},
year = {2026},
howpublished = {\url{https://pith.science/paper/K47K5DBP}},
note = {Machine review of arXiv:2507.09213}
}
read the original abstract
Wavelet neural network (WNN), which learns an unknown nonlinear mapping from the data, has been widely used in signal processing, and time-series analysis. However, challenges in constructing accurate wavelet bases and high computational costs limit their application. This study introduces a constructive WNN that selects initial bases and trains functions by introducing new bases for predefined accuracy while reducing computational costs. For the first time, we analyze the frequency of unknown nonlinear functions and select appropriate initial wavelets based on their primary frequency components by estimating the energy of the spatial frequency component. This leads to a novel constructive framework consisting of a frequency estimator and a wavelet-basis increase mechanism to prioritize high-energy bases, significantly improving computational efficiency. The theoretical foundation defines the necessary time-frequency range for high-dimensional wavelets at a given accuracy. The framework's versatility is demonstrated through four examples: estimating unknown static mappings from offline data, combining two offline datasets, identifying time-varying mappings from time-series data, and capturing nonlinear dependencies in real time-series data. These examples showcase the framework's broad applicability and practicality. All the code will be released at https://github.com/dshuangdd/CWNN.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[37]
A. Agogino and K. Goebel, “Mill data set,” BEST lab, UC Berkeley. NASA Ames Prognostics Data Repository , 2027
work page 2027
-
[1]
Semi-supervised learning for multi-label cardiovascular diseases prediction: a multi-dataset study,
R. Zhou, L. Lu, Z. Liu, T. Xiang, Z. Liang, D. A. Clifton, Y . Dong, and Y .-T. Zhang, “Semi-supervised learning for multi-label cardiovascular diseases prediction: a multi-dataset study,”IEEE Transactions on Pattern Analysis and Machine Intelligence , 2023
work page 2023
-
[2]
Autonet-generated deep layer-wise convex networks for ecg classification,
Y . Shen, L. Lu, T. Zhu, X. Wang, L. Clifton, Z. Chen, R. Clarke, and D. A. Clifton, “Autonet-generated deep layer-wise convex networks for ecg classification,” IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024
work page 2024
-
[3]
Constructive neural-network learning algorithms for pattern classification,
R. Parekh, J. Yang, and V . Honavar, “Constructive neural-network learning algorithms for pattern classification,” IEEE Transactions on Neural Networks, vol. 11, no. 2, pp. 436–451, 2000
work page 2000
-
[4]
Constructive training of probabilistic neural networks,
M. Berthold and J. Diamond, “Constructive training of probabilistic neural networks,” Neurocomputing, vol. 19, no. 1-3, pp. 167–183, 1998
work page 1998
-
[5]
On the expressivity of recurrent neural cascades,
N. A. Knorozova and A. Ronca, “On the expressivity of recurrent neural cascades,” in Proceedings of the AAAI Conference on Artificial Intelligence, vol. 38, no. 9, 2024, pp. 10 589–10 596
work page 2024
-
[6]
Incremental extreme learning ma- chine based on cascade neural networks,
Y . Wan, S. Song, and G. Huang, “Incremental extreme learning ma- chine based on cascade neural networks,” in 2015 IEEE International Conference on Systems, Man, and Cybernetics , 2015, pp. 1889–1894
work page 2015
-
[7]
Wavelet neural networks: A practical guide,
A. K. Alexandridis and A. D. Zapranis, “Wavelet neural networks: A practical guide,” Neural Networks, vol. 42, pp. 1–27, 2013
work page 2013
Show all 41 references
-
[8]
High precision robust control for periodic tasks of linear motor via B-spline wavelet neural network observer,
Y . Liu, W. Sun, and H. Gao, “High precision robust control for periodic tasks of linear motor via B-spline wavelet neural network observer,” IEEE Transactions on Industrial Electronics , vol. 69, no. 8, pp. 8255– 8263, 2022
2022
-
[9]
Wavelet neural net- works for function learning,
J. Zhang, G. G. Walter, Y . Miao, and W. N. W. Lee, “Wavelet neural net- works for function learning,” IEEE Transactions on Signal Processing , vol. 43, pp. 1485–1497, 1995
1995
-
[10]
Wavelet-powered neural networks for turbulence,
A. T. Mohan, D. Livescu, and M. Chertkov, “Wavelet-powered neural networks for turbulence,” in ICLR 2020 Workshop on Integration of Deep Neural Models and Differential Equations , 2020
2020
-
[11]
A constructive algorithm for wavelet neural networks,
J. Xu and D. W. C. Ho, “A constructive algorithm for wavelet neural networks,” in Proceedings of the First International Conference on Advances in Natural Computation , no. 10, 2005, p. 730–739
2005
-
[12]
Nonlinear adaptive wavelet control using con- structive wavelet networks,
J.-X. Xu and Y . Tan, “Nonlinear adaptive wavelet control using con- structive wavelet networks,” IEEE Transactions on Neural Networks , vol. 18, no. 1, pp. 115–127, 2007
2007
-
[13]
Adaptive wavelet networks for nonlinear system identification,
J. Xu and D. Ho, “Adaptive wavelet networks for nonlinear system identification,” in Proceedings of the 1999 American Control Conference (Cat. No. 99CH36251) , vol. 5, 1999, pp. 3472–3473 vol.5
1999
-
[14]
Using wavelets in nonparametric estimation,
Q. Zhang, “Using wavelets in nonparametric estimation,” in Proceedings of 1994 33rd IEEE Conference on Decision and Control , vol. 4, 1994, pp. 3406–3411
1994
-
[15]
WaveCNNs-AT: Wavelet- based deep CNNs of adaptive threshold for signal recognition,
W. Yang, B. Chen, Y . Shen, and L. Yu, “WaveCNNs-AT: Wavelet- based deep CNNs of adaptive threshold for signal recognition,” Applied Intelligence, vol. 53, no. 23, pp. 28 819–28 831, 2023
2023
-
[17]
A hierarchical evolutionary algorithm for constructing and training wavelet networks,
Y . He, F. Chu, and B. Zhong, “A hierarchical evolutionary algorithm for constructing and training wavelet networks,” Neural Computing and Applications, vol. 10, no. 4, pp. 357–366, 2002
2002
-
[18]
Learning algorithm of wavelet network based on sampling theory,
Z. Zhang, “Learning algorithm of wavelet network based on sampling theory,” Neurocomputing, vol. 71, no. 1-3, pp. 244–269, 2007
2007
-
[19]
Physics guided wavelet convolutional neural network for wind-induced vibration modeling with application to structural dynamic reliability analysis,
Z. Xu, H. Wang, C. Xing, T. Tao, J. Mao, and Y . Liu, “Physics guided wavelet convolutional neural network for wind-induced vibration modeling with application to structural dynamic reliability analysis,” Engineering Structures, vol. 297, p. 117027, 2023. MANUSCRIPT FOR IEEE T...
2023
-
[20]
Research and application of wavelet neural network in electrical resistivity imaging inversion,
J. Yu, J. Liu, H. Zhang, and H. Lu, “Research and application of wavelet neural network in electrical resistivity imaging inversion,” Journal of Applied Geophysics, vol. 215, p. 105114, 2023
2023
-
[21]
Multiwavelet-based operator learning for differential equations,
G. Gupta, X. Xiao, and P. Bogdan, “Multiwavelet-based operator learning for differential equations,” Advances in neural information processing systems, vol. 34, pp. 24 048–24 062, 2021
2021
-
[22]
Non-linear operator approximations for initial value problems,
G. Gupta, X. Xiao, R. Balan, and P. Bogdan, “Non-linear operator approximations for initial value problems,” in International Conference on Learning Representations (ICLR) , 2022
2022
-
[23]
Coupled multiwavelet operator learning for coupled differential equations,
X. Xiao, D. Cao, R. Yang, G. Gupta, G. Liu, C. Yin, R. Balan, and P. Bogdan, “Coupled multiwavelet operator learning for coupled differential equations,” in The Eleventh International Conference on Learning Representations, 2023
2023
-
[24]
Wavelet neural operator for solving parametric partial differential equations in computational mechanics problems,
T. Tripura and S. Chakraborty, “Wavelet neural operator for solving parametric partial differential equations in computational mechanics problems,” Computer Methods in Applied Mechanics and Engineering , vol. 404, p. 115783, 2023
2023
-
[25]
Koopman theory-inspired method for learning time advancement operators in unstable flame front evolution,
R. Yu, M. Herbert, M. Klein, and E. Hodzic, “Koopman theory-inspired method for learning time advancement operators in unstable flame front evolution,” Physics of Fluids , vol. 37, no. 2, 2025
2025
-
[26]
Iterative algorithm of wavelet network learning from nonuni- form data,
Z. Zhang, “Iterative algorithm of wavelet network learning from nonuni- form data,” Neurocomputing, vol. 72, no. 13-15, SI, pp. 2979–2999, 2009
2009
-
[27]
On learning over-parameterized neural networks: A functional approximation perspective,
L. Su and P. Yang, “On learning over-parameterized neural networks: A functional approximation perspective,” Advances in Neural Information Processing Systems, vol. 32, pp. 1485–1497, 2019
2019
-
[28]
The wavelet transform, time-frequency localization and signal analysis,
I. Daubechies, “The wavelet transform, time-frequency localization and signal analysis,” IEEE Transactions on Information Theory , vol. 36, no. 5, pp. 961–1005, 1990
1990
-
[29]
Multiresolution approximations and wavelet orthonormal bases of l2(r),
S. G. Mallat, “Multiresolution approximations and wavelet orthonormal bases of l2(r),” Transactions of the American Mathematical Society, vol. 315, no. 1, pp. 69–87, 1989
1989
-
[30]
Singularity detection and processing with wavelets,
S. Mallat and W. Hwang, “Singularity detection and processing with wavelets,” IEEE Transactions on Information Theory, vol. 38, no. 2, pp. 617–643, 1992
1992
-
[31]
Multidimensional wavelet frames,
T. Kugarajah and Q. Zhang, “Multidimensional wavelet frames,” IEEE Transactions on Neural Networks , vol. 6, no. 6, pp. 1552–1556, 1995
1995
-
[32]
Adaptive learning control for finite interval tracking based on constructive function approximation and wavelet,
J.-X. Xu and R. Yan, “Adaptive learning control for finite interval tracking based on constructive function approximation and wavelet,” IEEE Transactions on Neural Networks , vol. 22, no. 6, pp. 893–905, 2011
2011
-
[33]
Multi-source localization using optimized time-frequency representation and sparsity component analysis,
S. Gao, M. Jia, D. Yao, and J. Wang, “Multi-source localization using optimized time-frequency representation and sparsity component analysis,” IEEE/ACM Transactions on Audio, Speech, and Language Processing, vol. 31, pp. 3564–3578, 2023
2023
-
[34]
Analysis and synthesis of feedforward neural networks using discrete affine wavelet transformations,
Y . Pati and P. Krishnaprasad, “Analysis and synthesis of feedforward neural networks using discrete affine wavelet transformations,” IEEE Transactions on Neural Networks , vol. 4, no. 1, pp. 73–85, 1993
1993
-
[35]
Wavelet neural net- works for function learning,
J. Zhang, G. Walter, Y . Miao, and W. N. W. Lee, “Wavelet neural net- works for function learning,” IEEE Transactions on Signal Processing , vol. 43, no. 6, pp. 1485–1497, 1995
1995
-
[36]
A wavelet-neural networks model for time series,
A. Jamal, M. A. Hameed Ashour, R. A. Abbas Helmi, and S. L. Fong, “A wavelet-neural networks model for time series,” in 2021 IEEE 11th IEEE Symposium on Computer Applications & Industrial Electronics (ISCAIE), 2021, pp. 325–330
2021
-
[38]
Weak monotonicity with trend analysis for unsupervised feature evaluation,
L. Lu, Y . Tan, D. Oetomo, I. Mareels, and D. A. Clifton, “Weak monotonicity with trend analysis for unsupervised feature evaluation,” IEEE Transactions on Cybernetics, vol. 53, no. 11, pp. 6883–6895, 2023
2023
-
[39]
Decoding 2.3 million ECGs: Interpretable deep learning for advancing cardiovascular diagnosis and mortality risk stratification,
L. Lu, T. Zhu, A. H. Ribeiro, L. Clifton, E. Zhao, J. Zhou, A. L. P. Ribeiro, Y .-T. Zhang, and D. A. Clifton, “Decoding 2.3 million ECGs: Interpretable deep learning for advancing cardiovascular diagnosis and mortality risk stratification,” European Heart Journal-Digital Heal...
2024
-
[40]
Weak monotonicity with trend analysis for unsupervised feature evaluation,
L. Lu, Y . Tan, D. Oetomo, I. Mareels, and D. A. Clifton, “Weak monotonicity with trend analysis for unsupervised feature evaluation,” IEEE Transactions on Cybernetics , 2022
2022
-
[41]
Iterative learning based consensus control for distributed parameter type multi-agent differential inclu- sion systems,
M. Zhou, J. Wang, and D. Shen, “Iterative learning based consensus control for distributed parameter type multi-agent differential inclu- sion systems,” International Journal of Robust and Nonlinear Control , vol. 32, no. 12, pp. 6785–6804, 2022
2022
-
[42]
Efficient architecture search for continual learning,
Q. Gao, Z. Luo, D. Klabjan, and F. Zhang, “Efficient architecture search for continual learning,” IEEE Transactions on Neural Networks and Learning Systems, 2022
2022
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.