REVIEW 3 major objections 4 minor 24 references
Additive decomposition of one-dimensional signals using Transformers
T0 review · 3 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that a Transformer encoder trained on synthetic data can decompose a noisy one-dimensional signal into its piecewise-constant, smooth, oscillatory, and noise components more accurately and far faster than a tuned…
desk verdict Clean empirical study of a Transformer for 1D signal decomposition, but the headline win over VSD rests on 13 un-replicated signals and needs statistical teeth. 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 Transformer encoder with multi-head self-attention (softmax over query-key dot products) plus sinusoidal positional encodings; it transforms the input token sequence into an output sequence of the same length, and a final 1D convolution plus a shared linear layer maps tokens to the four component signals. Self-attention is doing the work: it gives each output location a global view of the input, which the authors argue helps estimate each component, since long-range dependencies matter for the piecewise-constant and oscillatory parts. Chunking variants control the sequence length, trading memory against accuracy, and the experiments compare the no-chunk, sum, cat, and conv tokenization strategies.
What would settle it
Train or evaluate the same architecture on signals whose components fall outside the synthetic ranges (e.g., smooth frequencies below 2 or above 7, oscillatory frequencies outside 70–80, jumps closer than 40 samples, non-Gaussian or colored noise, or real recordings with known ground truth); if the per-component RMSE no longer stays well below that of the tuned variational baseline, the paper's claim of general data-driven effectiveness would be disproved.
Extended reading notes
Core claim
The central claim is that the signal decomposition problem (1) can be solved by an encoder-only Transformer that maps a sequence of scalar samples to four sequences of equal length, one per component. The network is trained by minimizing the sum of the mean squared errors of the four components, and on the benchmark it outperforms the convex predictor–nonconvex corrector variational method VSD, both in accuracy (all components, on both the 13-signal and 4000-signal test sets) and in practical terms: no test-time tuning and automatic detection of absent components.
Load-bearing premise
Everything rests on the assumption that the synthetic generative process used for training and testing—the frequency bands, jump distances, amplitude ranges, blending factors, and SNR=20—produces signals representative of the real-world signals the method is supposed to decompose.
Editorial extensions
If this is right
- TSD removes the need for per-signal hyperparameter tuning: once trained, the same network decomposes any in-distribution signal in one forward pass, about 144 ms per batch of 128 signals on GPU in the chunked variant.
- The model automatically outputs near-zero values for components absent from the input, whereas variational methods require the user to specify which components to estimate.
- Because an ensemble of the chunked and no-chunk variants combines the best oscillatory estimate with the best other components, users can trade memory for accuracy depending on their resources.
- A public synthetic dataset of 18,000 signals with ground-truth components (to be released) gives other researchers a common benchmark for data-driven signal decomposition.
Reading between the lines
- A natural next test would be out-of-distribution evaluation: the reported superiority over VSD is measured on data drawn from the same generator that produced the training set, so the method's practical value hinges on how much of that structure transfers to real signals.
- The approach could be plugged into time-series forecasting pipelines as a learned alternative to classical trend-seasonal decomposition; the paper's authors mention such applications only as motivation, so this is an extension, not a claim.
- The chunking results suggest a scalable design: reducing token count with a convolutional projection keeps most of the accuracy while cutting memory by a factor of roughly 2.5, which hints that attention can operate efficiently on compressed tokens for long signals.
- A direct extension would be to test the same architecture on two-dimensional images, where cartoon-texture-noise decomposition has a long tradition in variational image processing; the paper names this as future work.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes TSD, a Transformer-encoder architecture that maps a one-dimensional signal f in R^M to four additive components (piecewise constant, smooth, oscillatory, and noise) under the model f = c + s + o + n. The input is either the full signal ("no chunks") or downsampled by one of three chunking strategies (sum, cat, conv), and the training loss is the sum of MSEs over the four components. A synthetic data generator is defined with specific frequency bands, jump parameters, blending factors, and SNR=20. Experiments include an ablation study (Table 1) and a comparison with the variational VSD method (Table 2). The authors report lower RMSE for TSD than VSD on a 13-signal set and additionally evaluate TSD on 4000 held-out synthetic signals, concluding that data-driven methods, and in particular TSD, are effective for the considered signal-decomposition problem.
Significance. If the comparative result were statistically grounded, TSD would offer a practical alternative to variational signal decomposition: no per-signal hyperparameter tuning, fast inference, and automatic detection of absent components. The architecture is simple, the ablation study is thoughtful, and the synthetic-data pipeline is described in enough detail to be reproduced. However, all evidence is synthetic and in-distribution, and the only head-to-head comparison rests on 13 unreplicated signals. The contribution is therefore a plausible proof-of-concept rather than an established improvement over variational methods. The paper would be substantially strengthened by error bars with repeated draws, a clearer description of the VSD evaluation protocol, and at least one out-of-distribution or real-data check.
major comments (3)
- [§5.2, Table 2] The central comparison against VSD is not statistically supported. It uses exactly 13 test signals, one random draw per blending factor, with no repeated sampling, no error bars, and no significance test. Because VSD requires about 30 minutes of per-signal hyperparameter tuning, these 13 signals constitute a hand-tuned evaluation set rather than an independent sample; the reported margin (TSD no chunks 2.153e-3 versus VSD 4.780e-3) could shrink or disappear on another draw. The 4000-signal rows evaluate only TSD and therefore do not validate the comparative claim. Please provide multiple random draws with paired confidence intervals or a significance test, or explicitly present the comparison as illustrative rather than as evidence of superiority.
- [§5.2] The VSD evaluation protocol is underspecified. The manuscript does not state whether VSD was given the true component support (which of c, s, o are nonzero) for each of the 13 signals, whether the exhaustive hyperparameter tuning was performed on the test signal itself, or what criterion selected the final configuration. Since the paper notes that variational methods require users to manually specify the components to be estimated, this information is necessary to rule out an uneven comparison. Please report the exact protocol, including any validation split, the number of configurations tried, and how the presence or absence of each component was communicated to VSD.
- [§4 and §5] All experimental results are in-distribution with respect to the synthetic generator of Section 4: frequency bands [2,7] and [70,80], jump distances [40,50], amplitudes [0.5,1], SNR=20, and the listed blending factors. The introduction and conclusion motivate signal decomposition for real-world applications (environmental, biomedical, financial), but no experiment tests signals outside this generator, so the practical generalization claims are unsupported. Please add an out-of-distribution or real-data experiment, or explicitly scope the paper's claims to the synthetic distribution and temper the introduction and conclusion accordingly.
minor comments (4)
- [Multiple sections] There are several typos: "Trasformer-based" in Section 3, "positional encondings" in Section 3, "reminder" for "remainder" in Section 5.1, and "more accurate then" for "than" in Section 5.2.
- [Fig. 3 caption] The caption refers to the baseline as "(Girometti et al., 2024)" rather than "VSD", which is inconsistent with the rest of the paper.
- [Footnote 1] The dataset availability footnote says "to be published upon acceptance"; an anonymous repository link or a description of how to obtain the data should be provided for review and reproducibility.
- [Tables 1 and 2] It would be helpful to state the number of random seeds used for the reported RMSE values and whether the values are averaged over test signals only or also over network initializations.
Circularity Check
No significant circularity: TSD is trained and evaluated on held-out synthetic data, and the VSD comparison is an empirical benchmark, not a derivation from the paper's own assumptions.
full rationale
The paper's central claim is empirical: a Transformer trained with a per-component MSE loss on a synthetic training set is evaluated on held-out synthetic test signals. The reported test-set RMSE values in Table 2 are not fitted parameters, and no component of the loss, architecture, or experimental protocol is defined in terms of the reported accuracy metric. The only self-citation concern is the use of VSD (Girometti et al., 2024) as the variational baseline, a paper co-authored by two of the current authors. However, the comparison is a direct numerical experiment rerun on the same 13 signals, not an appeal to the citation's authority. The VSD method is published independently of the Transformer model, and its results are recomputed here with per-signal hyperparameter tuning. There is no uniqueness theorem, no ansatz imported via citation, and no fitted parameter relabeled as a prediction. The evaluation is in-distribution, which limits external generalizability, but that is a scoping limitation, not circularity.
Assumptions & free parameters
free parameters (5)
- Smooth/oscillatory frequency bands =
k in [2,7] for smooth, k in [70,80] for oscillatory
- Jump generation parameters =
distance d in [40,50], amplitude |a| in [0.5,1]
- Blending factor list =
13 triplets listed in Section 5
- Signal-to-noise ratio =
20 dB
- Network and training hyperparameters =
D=512, h=8, N=4, dropout=0.1, lr=1e-4, batch=64, epochs=15000
assumptions (5)
- domain assumption Signals of interest are additively decomposable as f = c + s + o + n with AWGN noise (Eq. 1).
- domain assumption The synthetic generation process in Section 4 produces signals representative of the target application domain.
- domain assumption The ground-truth decomposition used for training is the desired output, and the decomposition is identifiable within the generative model.
- domain assumption Training and test signals are i.i.d. samples from the same distribution, and in-distribution accuracy transfers to practical use.
- domain assumption ADAM optimization with MSE loss finds parameters that approximate the optimal decomposition mapping.
Cite this review
Pith. "Pith review of Additive decomposition of one-dimensional signals using Transformers." pith.science (2026). https://pith.science/paper/H2WMEPIV
@misc{pith2026250605942,
author = {Pith},
title = {Pith review of: Additive decomposition of one-dimensional signals using Transformers},
year = {2026},
howpublished = {\url{https://pith.science/paper/H2WMEPIV}},
note = {Machine review of arXiv:2506.05942}
}
read the original abstract
One-dimensional signal decomposition is a well-established and widely used technique across various scientific fields. It serves as a highly valuable pre-processing step for data analysis. While traditional decomposition techniques often rely on mathematical models, recent research suggests that applying the latest deep learning models to this problem presents an exciting, unexplored area with promising potential. This work presents a novel method for the additive decomposition of one-dimensional signals. We leverage the Transformer architecture to decompose signals into their constituent components: piece-wise constant, smooth (low-frequency oscillatory), textured (high-frequency oscillatory), and a noise component. Our model, trained on synthetic data, achieves excellent accuracy in modeling and decomposing input signals from the same distribution, as demonstrated by the experimental results.
Figures
Reference graph
Works this paper leans on
-
[1]
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize "" * " " * ...
-
[2]
author Ba, J. L. , author Kiros, J. R. , & author Hinton, G. E. ( year 2016 ). title Layer normalization . journal arXiv preprint arXiv:1607.06450 \/ ,
arXiv 2016
-
[3]
author Cai, G. , author Selesnick, I. W. , author Wang, S. , author Dai, W. , & author Zhu, Z. ( year 2018 ). title Sparsity-enhanced signal decomposition via generalized minimax-concave penalty for gearbox fault diagnosis . journal Journal of Sound and Vibration \/ , volume 432 \/ , pages 213--234 . :https://doi.org/10.1016/j.jsv.2018.06.037
-
[4]
author Chen, Y. , author Zhang, H. , author You, Y. , author Zhang, J. , & author Tang, L. ( year 2025 ). title A hybrid deep learning model based on signal decomposition and dynamic feature selection for forecasting the influent parameters of wastewater treatment plants . journal Environmental Research \/ , volume 266 \/ , pages 120615 . :https://doi.org...
-
[5]
author Cicone, A. , author Huska, M. , author Kang, S.-H. , & author Morigi, S. ( year 2022 ). title JOT : A variational signal decomposition into jump, oscillation and trend . journal IEEE Transactions on Signal Processing \/ , volume 70 \/ , pages 772--784 . :10.1109/TSP.2022.3145665
arXiv 2022
-
[6]
author Daubechies, I. , author Lu, J. , & author Wu, H.-T. ( year 2011 ). title Synchrosqueezed wavelet transforms: An empirical mode decomposition-like tool . journal Applied and Computational Harmonic Analysis \/ , volume 30 \/ , pages 243--261 . :https://doi.org/10.1016/j.acha.2010.08.002
-
[7]
author Dosovitskiy, A. , author Beyer, L. , author Kolesnikov, A. , author Weissenborn, D. , author Zhai, X. , author Unterthiner, T. , author Dehghani, M. , author Minderer, M. , author Heigold, G. , author Gelly, S. , author Uszkoreit, J. , & author Houlsby, N. ( year 2020 ). title An image is worth 16x16 words: Transformers for image recognition at sca...
work page 2020
-
[8]
author Dragomiretskiy, K. , & author Zosso, D. ( year 2014 ). title Variational mode decomposition . journal IEEE Transactions on Signal Processing \/ , volume 62 \/ , pages 531--544 . :10.1109/TSP.2013.2288675
arXiv 2014
Show all 24 references
-
[9]
, & author Rehman, N
author Eriksen, T. , & author Rehman, N. ( year 2023 ). title Data-driven nonstationary signal decomposition approaches: a comparative analysis. journal Sci Rep \/ , volume 1798 \/
2023
-
[10]
, author Huska, M
author Girometti, L. , author Huska, M. , author Lanza, A. , & author Morigi, S. ( year 2024 ). title Convex predictor–nonconvex corrector optimization strategy with application to signal decomposition . journal Journal of Optimization Theory and Applications \/ , (pp. pages 1...
2024 doi
-
[11]
author Huang, N. E. , author Shen, Z. , author Long, S. R. , author Wu, M. C. , author Shih, H. H. , author Zheng, Q. , author Yen, N.-C. , author Tung, C. C. , & author Liu, H. H. ( year 1998 ). title The empirical mode decomposition and the hilbert spectrum for nonlinear and...
1998
-
[12]
, & author Ba, J
author Kingma, D. , & author Ba, J. ( year 2015 ). title Adam: A method for stochastic optimization . In booktitle International Conference on Learning Representations (ICLR) \/ . address San Diega, CA, USA
2015
-
[13]
, author Jiao, S.-B
author Li, Y.-X. , author Jiao, S.-B. , & author Gao, X. ( year 2021 ). title A novel signal feature extraction technology based on empirical wavelet transform and reverse dispersion entropy . journal Defence Technology \/ , volume 17 \/ , pages 1625--1635 . :https://doi.org/1...
2021 doi
-
[14]
, author Tan, Y
author Lin, Y.-D. , author Tan, Y. K. , & author Tian, B. ( year 2022 ). title A novel approach for decomposition of biomedical signals in different applications based on data-adaptive gaussian average filtering . journal Biomedical Signal Processing and Control \/ , volume 71...
2022
-
[15]
author Meyers, B. E. , & author Boyd, S. P. ( year 2023 ). title Signal Decomposition Using Masked Proximal Operators \/ . Foundations and trends in signal processing. publisher Now Publishers
2023
-
[16]
, author Joshi, S
author Singh, P. , author Joshi, S. D. , author Patney, R. K. , & author Saha, K. ( year 2017 ). title The Fourier decomposition method for nonlinear and non-stationary time series analysis . journal Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sc...
2017
-
[17]
author Smith, L. N. , & author Topin, N. ( year 2017 ). title Super-convergence: Very fast training of residual networks using large learning rates . journal arXiv preprint arXiv:1708.07120 \/ ,
2017 arXiv
-
[18]
, author Hinton, G
author Srivastava, N. , author Hinton, G. , author Krizhevsky, A. , author Sutskever, I. , & author Salakhutdinov, R. ( year 2014 ). title Dropout: A simple way to prevent neural networks from overfitting . journal Journal of Machine Learning Research \/ , volume 15 \/ , pages...
2014
-
[19]
, author Shazeer, N
author Vaswani, A. , author Shazeer, N. , author Parmar, N. , author Uszkoreit, J. , author Jones, L. , author Gomez, A. N. , author Kaiser, L. , & author Polosukhin, I. ( year 2017 ). title Attention is all you need . In booktitle Proceedings of the 31st International Confere...
2017
-
[20]
, author Zhou, T
author Wen, Q. , author Zhou, T. , author Zhang, C. , author Chen, W. , author Ma, Z. , author Yan, J. , & author Sun, L. ( year 2023 ). title Transformers in time series: A survey . In editor E. Elkind (Ed.), booktitle Proceedings of the Thirty-Second International Joint Conf...
2023 doi
-
[21]
, author Xu, J
author Wu, H. , author Xu, J. , author Wang, J. , & author Long, M. ( year 2021 ). title Autoformer: decomposition transformers with auto-correlation for long-term series forecasting . In booktitle Proceedings of the 35th International Conference on Neural Information Processi...
2021
-
[22]
, author Cicone, A
author Zhou, F. , author Cicone, A. , & author Zhou, H. ( year 2024 ). title IRCNN ^ + : An enhanced iterative residual convolutional neural network for non-stationary signal decomposition . journal Pattern Recognition \/ , volume 155 \/ , pages 110670 . :https://doi.org/10.10...
2024
-
[23]
, author Ma, Z
author Zhou, T. , author Ma, Z. , author Wen, Q. , author Wang, X. , author Sun, L. , & author Jin, R. ( year 2022 a ). title FEDformer : Frequency enhanced decomposed transformer for long-term series forecasting . journal arXiv preprint arXiv:2201.12740 \/ ,
2022 arXiv
-
[24]
, author Feng, Z
author Zhou, W. , author Feng, Z. , author Xu, Y. , author Wang, X. , & author Lv, H. ( year 2022 b ). title Empirical Fourier decomposition: An accurate signal decomposition method for nonlinear and non-stationary time series analysis . journal Mechanical Systems and Signal P...
2022
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.