REVIEW 3 major objections 4 minor 58 references
CoSTI: Consistency Models for (a faster) Spatio-Temporal Imputation
T0 review · 3 major / 4 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read CoSTI adapts consistency models to multivariate time series imputation, matching diffusion-based accuracy while cutting inference time by up to 98%.
desk verdict First consistency-model adaptation for MTSI, but the headline 98% speedup is compromised by an unresolved contradiction between Algorithm 2's 100-pass median and the text's 'single forward pass' claim. 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 consistency function $\boldsymbol{f}_\theta(\mathbf{x}_\sigma, \sigma)$, parameterized as $c_{\text{skip}}(\sigma)\mathbf{x} + c_{\text{out}}(\sigma) F_\theta(\ldots)$ and implemented by a U-Net with spatio-temporal feature extraction modules (STFEM), noise-extraction modules (NEM), and a separate conditioning branch that ingests the linear-interpolation estimate, the mask, and the graph. The training objective enforces self-consistency between adjacent noise levels of the PF-ODE using a Pseudo-Huber metric, while a linear curriculum scheduler raises the number of noise levels from 10 to 200 during training. This machinery replaces the diffusion reverse chain: one consistency evaluation maps noise to data where a DDPM would need $T = 50$ or $T = 100$ iterative denoising steps.
What would settle it
Run Algorithm 2 end-to-end on METR-LA's test set, timing all 100 forward passes plus the median aggregation on the same GPU, and compare with one complete 50-step diffusion reverse chain; if the per-window time ratio is not close to 1:50, the up-to-98% reduction claim is refuted.
Extended reading notes
Core claim
The core discovery is that consistency training transfers from image generation to structured spatio-temporal imputation without needing a pretrained diffusion teacher. CoSTI learns a consistency function $f_\theta$ that takes a $\sigma$-noised observation together with conditional information and outputs the clean imputation, trained so that outputs for adjacent noise levels along the probability-flow ODE agree. At inference, each sample is produced in one (or two) network evaluations, and the final deterministic imputation aggregates 100 such samples by element-wise median. The paper reports per-dataset inference times of 0.005 to 0.48 hours versus 0.22 to 18.19 hours for DDPM-based models, with MAE and MSE close to those baselines across all six datasets.
Load-bearing premise
The speed claim rests on the reported inference time covering the full imputation procedure in Algorithm 2, which runs 100 stochastic forward passes per window and takes the median; if Table 3 counts only one of those passes, the 98% reduction would shrink by roughly a factor of 100 and the central comparison would not hold.
Editorial extensions
If this is right
- Generative imputation can operate at speeds suitable for real-time ICU monitoring and traffic control rather than offline batch processing.
- Because CoSTI is trained from scratch with consistency training, it avoids the extra cost of first training a diffusion model and then distilling it.
- The two-step variant CoSTI-2 offers a direct accuracy/speed dial, improving MAE and MSE on most datasets with only one additional forward pass.
- On the reported accuracy-time trade-off, CoSTI occupies the Pareto frontier, so no evaluated method is simultaneously faster and more accurate in the tested scenarios.
Reading between the lines
- The same conditional consistency formulation should transfer to forecasting by treating the future window as the missing block and using observed history as conditioning; this reuses Algorithm 1 without architectural changes.
- The 100-sample median used for deterministic imputation could double as an uncertainty estimator: the spread of the samples can be summarized as confidence intervals for clinical or traffic decisions, which the paper does not report.
- The fixed-graph assumption is the least-transferable design choice; on networks with changing topology, a learnable or time-varying adjacency matrix would be the natural next test, and the ablation results indicate the conditioning head would need to absorb that change.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes CoSTI, an adaptation of consistency models to multivariate time series imputation. The method trains a consistency model with a spatio-temporal U-Net architecture, conditional information, curriculum learning over the number of noise levels, and a deterministic imputation stage based on the median of 100 stochastic forward passes. The authors report imputation accuracy comparable to DDPM-based baselines (CSDI, PriSTI, TIMBA) across several datasets and missing-data scenarios, and claim a reduction of inference time of up to 98% relative to the diffusion baselines. The paper also includes benchmark comparisons, sensitivity analyses, ablations, and a downstream task evaluation.
Significance. If the main claim holds, CoSTI would be the first application of consistency models to multivariate time series imputation and would offer a practically useful accuracy/speed trade-off in a domain where diffusion models are accurate but slow. The paper has clear strengths: the code and Docker setup are released, the experimental coverage is broad (six datasets, multiple missingness scenarios, ablations, downstream evaluation), and the accuracy numbers are mostly competitive with the diffusion baselines. However, the central speed claim rests on a timing comparison whose protocol is internally inconsistent with the published sampling algorithm, and this issue must be resolved before the contribution can be assessed.
major comments (3)
- [§4.1.4, §4.3 (Algorithm 2), §5.4.1 (Table 3)] There is a direct internal contradiction between the timed inference protocol and the sampling algorithm. Algorithm 2 runs j=1..100 stochastic forward passes per window and then takes an element-wise median, and Section 4.1.4 states N=100 for this deterministic imputation. Section 4.3, however, claims that 'CoSTI requires only a single forward pass' and derives a ~T-fold speedup over T-step diffusion models. Section 5.4.1 states that Table 3 was obtained 'using a single sampling step'. If the reported CoSTI times include only one of the 100 passes, then the true per-window work is about 100 model evaluations; the step-count advantage over T=50 or T=100 diffusion steps disappears (and for AQI-36, where CSDI uses T=100, the forward-pass counts are equal). In that case the reported 44x speedup on AQI-36 would have to come from a per-forward-pass architectural advantage that is neither claimed nor demonstrated. The authors must state unambiguously whether Table 3 reports end-to-end time for the full Algorithm 2 procedure or for a single forward pass, and must report the corresponding baselines under the same protocol.
- [§5.4.1 (Table 3), §4.3] The complexity analysis in Section 4.3 is not a valid substitute for an empirical timing comparison once Algorithm 2 is used. Even if a single consistency-model forward pass is cheaper than one diffusion step, the paper must report the total number of model evaluations per imputed window for each method, including the 100 samples used for the median and the number of stochastic samples used for each diffusion baseline. At present, the text does not state whether the CSDI/PriSTI/TIMBA timings include one stochastic imputation sample or several, so the comparison may be asymmetric in either direction. The step-count argument in Section 4.3 and the '1/T times faster' statement in Section 5.4.1 are only valid if every method is measured with the same number of stochastic samples per window.
- [§5.3 (Table 2), §5.4.1 (Tables 4-5)] The dataset-specific second noise level sigma_i2 is described as 'experimentally determined' and its values are reported in Table 2, but the selection procedure is not specified. If sigma_i2 was tuned using the same test scenarios that are later reported in Tables 4 and 5, the accuracy advantage of CoSTI-2 (and the claimed 'controllable trade-off') could be optimistically biased. The authors should state whether sigma_i2 was chosen on validation data only, and if not, how the reported CoSTI-2 numbers should be interpreted.
minor comments (4)
- [Eq. (10)] In Eq. (10), the second displayed formula is written as c_in(σ) = ln(σ)/4, but from the context it should be c_noise(σ) = ln(σ)/4; this appears to be a typo.
- [Eq. (4)] The expression for c_skip(σ) appears to be missing a square in the denominator: the standard form is σ_data^2 / ((σ - σ_min)^2 + σ_data^2), while the paper writes (σ - σ_min) without the square. Please check and correct.
- [Algorithm 2] The comment 'keep only missing values' next to the line ̂X_t ← [ ̃X_t ⊙ M_t + ̂X_t ⊙ (1 - M_t)] is misleading: the operation keeps the observed values from the input and the imputed values at missing positions, which is the opposite of keeping only missing values.
- [§5.4.1] The statement that CoSTI is 'approximately 1/T times faster' than diffusion models conflates step count with wall-clock time; it should be phrased as a reduction in the number of network evaluations, with wall-clock speedup depending on per-forward-pass cost and any overhead from the 100-sample median loop.
Circularity Check
No circular derivation found: the accuracy and speed claims are empirical measurements, and the consistency-training objective follows external consistency-model theory; the 100-sample median timing ambiguity is a measurement concern, not a circularity.
full rationale
CoSTI makes two central claims: comparable imputation accuracy to DDPMs and up to a 98% reduction in inference time. Neither claim is derived from a quantity defined to equal it. The accuracy results in Tables 4-6 are direct empirical evaluations on fixed benchmarks; they do not follow from the consistency-training loss in Eq. (6) or the parameterization in Eq. (3) by construction. The speed claim is an empirical runtime comparison (Table 3) plus an asymptotic step-count argument in Section 4.3. That argument counts one consistency-model forward pass versus T diffusion steps, which is a standard complexity comparison rather than a definitional identity. There is, however, an internal ambiguity worth flagging explicitly: Section 5.4.1 says Table 3 was obtained "using a single sampling step" and Section 4.3 says "CoSTI requires only a single forward pass", while Algorithm 2 runs "for j = 1 to 100" stochastic forward passes and then forms "X_t <- Median(S)". If the reported CoSTI times include all 100 passes, the per-window work is much larger than "single forward pass"; if they include only one pass, the times do not correspond to the deterministic imputation procedure described by Algorithm 2. This is a measurement/protocol inconsistency that affects the magnitude and fairness of the 98% speedup, but it is not a reduction of a prediction to its inputs by construction, so it does not meet the criteria for circularity. The paper's self-citations are not load-bearing circularity: Section 5.2 sources CSDI, PriSTI, and TIMBA numbers from the authors' previous work [25], but those are external benchmark measurements that are reproducible and are not used to define CoSTI's predictions. Per-dataset hyperparameters such as sigma_i2 are experimentally selected, but this is ordinary tuning rather than a fitted parameter renamed as a prediction. No uniqueness theorem is imported from the authors, no ansatz is smuggled in through self-citation, and no known result is merely renamed. Overall, the derivation chain is self-contained in the sense relevant to circularity.
Assumptions & free parameters
free parameters (4)
- sigma_i2 (second sampling noise level) =
0.621 to 20.92 depending on dataset (Table 2)
- Curriculum endpoints s0, s1 =
s0=10, s1=200
- Dropout rate =
0.2
- Number of median samples =
100
assumptions (4)
- standard math The consistency function f* exists and satisfies self-consistency along the PF-ODE (Song et al. [11]).
- standard math The PF-ODE with score function describes the noising process on multivariate time series data (Eq. 2).
- domain assumption A fixed graph topology, built from distances or correlations, captures the spatial structure of the sensors for all time steps.
- domain assumption Synthetic missingness strategies during training generalize to the real missing patterns in the test sets.
Cite this review
Pith. "Pith review of CoSTI: Consistency Models for (a faster) Spatio-Temporal Imputation." pith.science (2026). https://pith.science/paper/PTB24QYP
@misc{pith2026250119364,
author = {Pith},
title = {Pith review of: CoSTI: Consistency Models for (a faster) Spatio-Temporal Imputation},
year = {2026},
howpublished = {\url{https://pith.science/paper/PTB24QYP}},
note = {Machine review of arXiv:2501.19364}
}
read the original abstract
Multivariate Time Series Imputation (MTSI) is crucial for many applications, such as healthcare monitoring and traffic management, where incomplete data can compromise decision-making. Existing state-of-the-art methods, like Denoising Diffusion Probabilistic Models (DDPMs), achieve high imputation accuracy; however, they suffer from significant computational costs and are notably time-consuming due to their iterative nature. In this work, we propose CoSTI, an innovative adaptation of Consistency Models (CMs) for the MTSI domain. CoSTI employs Consistency Training to achieve comparable imputation quality to DDPMs while drastically reducing inference times, making it more suitable for real-time applications. We evaluate CoSTI across multiple datasets and missing data scenarios, demonstrating up to a 98% reduction in imputation time with performance on par with diffusion-based models. This work bridges the gap between efficiency and accuracy in generative imputation tasks, providing a scalable solution for handling missing data in critical spatio-temporal systems.
Reference graph
Works this paper leans on
-
[1]
J. Solís-García, B. Vega-Márquez, J.A. Nepomuceno, J.C. Riquelme-Santos, I.A. Nepomuceno-Chamorro, Comparing artificial intelligence strategies for early sepsis detection in the ICU: an experimental study, Appl. Intell. 53(24) (2023) 30691–30705
work page 2023
- [2]
-
[3]
X. Wu, S. Mattingly, S. Mirjafari, C. Huang, N.V. Chawla, Personalized imputation on wearable-sensory time series via knowledge transfer, in: Proceedings of the 29th ACM International Conference on Information & Knowledge Management, 2020, pp. 1625–1634
work page 2020
-
[4]
M. Moor, M. Horn, C. Bock, K. Borgwardt, B. Rieck, Path imputation strategies for signature models, in: ICML Workshop on the Art of Learning with Missing Values (Artemiss), 2020
work page 2020
-
[5]
W. Cao, D. Wang, J. Li, H. Zhou, L. Li, Y. Li, Brits: bidirectional recurrent imputation for time series, Adv. Neural Inf. Process. Syst. 31 (2018). https://papers.nips.cc/pa- per_files/paper/2018/hash/734e6bfcd358e25ac1db0a4241b95651-Abstract.html
work page 2018
-
[6]
A. Cini, I. Marisca, C. Alippi, Filling the g_ap_s: multivariate time series imputation by graph neural networks, in: International Conference on Learning Representations,
-
[7]
J. Ho, A. Jain, P. Abbeel, Denoising diffusion probabilistic models, Adv. Neural Inf. Process. Syst. 33 (2020) 6840–6851
work page 2020
-
[8]
H. Chen, M. Lin, J. Liu, H. Yang, C. Zhang, Z. Xu, Nt-dptc: a non-negative temporal dimension preserved tensor completion model for missing traffic data imputation, Inf. Sci. 653 (2024) 119797. https://www.sciencedirect.com/science/article/pii/ S0020025523013828. https://doi.org/https://doi.org/10.1016/j.ins.2023.119797
Show all 58 references
-
[9]
X. Xu, M. Lin, X. Luo, Z. Xu, Hrst-lr: a hessian regularization spatio-temporal low rank algorithm for traffic data imputation, IEEE Trans. Intell. Transp. Syst. 24(10) (2023) 11001–11017
2023
-
[10]
Sanchez-Lopez, J
J.E. Sanchez-Lopez, J. Solís-García, J.C. Riquelme, Semi-real-time decision tree en- semble algorithms for very short-term solar irradiance forecasting, Int. J. Electr. Power Energy Syst. 158 (2024) 109947
2024
-
[11]
Y. Song, P. Dhariwal, M. Chen, I. Sutskever, Consistency models, in: A. Krause, E. Brunskill, K. Cho, B. Engelhardt, S. Sabato, J. Scarlett (Eds.), Proceedings of the 40th International Conference on Machine Learning, volume 202 of Proceedings of Machine Learning Research, PML...
2023
-
[12]
Beretta, A
L. Beretta, A. Santaniello, Nearest neighbor imputation algorithms: a critical evalu- ation, BMC Med. Inform. Decis. Mak. 16(3) (2016) 197–208
2016
-
[13]
Cichocki, A.-H
A. Cichocki, A.-H. Phan, Fast local algorithms for large scale nonnegative matrix and tensor factorizations, IEICE Trans. Fundamen. Electron. Commun. Comput. Sci. 92(3) (2009) 708–721
2009
-
[14]
S.C.-X. Li, B.M. Marlin, A scalable end-to-end gaussian process adapter for irregularly sampled time series classification, Adv. Neural Inf. Process. Syst. 29 (2016). https://proceedings.neurips.cc/paper_files/pa- per/2016/file/85422afb467e9456013a2a51d4dff702-Paper.pdf
2016
-
[15]
Q. Suo, L. Yao, G. Xun, J. Sun, A. Zhang, Recurrent imputation for multivariate time series with missing values, in: 2019 IEEE International Conference on Healthcare Informatics (ICHI), IEEE, 2019, pp. 1–3
2019
-
[16]
Lipton, D.C
Z.C. Lipton, D.C. Kale, R. Wetzel, et al., Modeling missing data in clinical time series with rnns, Mach. Learn. Healthcare 56(56) (2016) 253–270
2016
-
[17]
Tashiro, J
Y. Tashiro, J. Song, Y. Song, S. Ermon, Csdi: conditional score-based diffusion mod- els for probabilistic time series imputation, Adv. Neural Inf. Process. Syst. 34 (2021) 24804–24816
2021
-
[18]
M. Liu, H. Huang, H. Feng, L. Sun, B. Du, Y. Fu, Pristi: a conditional diffusion frame- work for spatiotemporal imputation, in: 2023 IEEE 39th International Conference on Data Engineering (ICDE), IEEE, 2023, pp. 1927–1939
2023
-
[19]
H. Chen, M. Lin, L. Zhao, Z. Xu, X. Luo, Fourth-order dimension preserved ten- sor completion with temporal constraint for missing traffic data imputation, IEEE Trans. Intell. Transp. Syst. PP (2025) 1–15. https://doi.org/10.1109/TITS.2025. 3531221
2025 doi
-
[20]
Fortuin, D
V. Fortuin, D. Baranchuk, G. Rätsch, S. Mandt, Gp-vae: deep Probabilistic time series imputation, in: International Conference on Artificial Intelligence and Statistics, PMLR, 2020, pp. 1651–1661
2020
-
[21]
X. Miao, Y. Wu, J. Wang, Y. Gao, X. Mao, J. Yin, Generative semi-supervised learning for multivariate time series imputation, in: Proceedings of the AAAI Conference on Artificial Intelligence, volume 35, 2021, pp. 8983–8991
2021
-
[22]
Thanh-Tung, T
H. Thanh-Tung, T. Tran, Catastrophic forgetting and mode collapse in GANs, in: 2020 International Joint Conference on Neural Networks (ijcnn), IEEE, 2020, pp. 1–10
2020
-
[23]
T. Yun, H. Jung, J. Son, Imputation as inpainting: diffusion models for spatiotem- poral data imputation (2023)
2023
-
[24]
Alcaraz, N
J.L. Alcaraz, N. Strodthoff, Diffusion-based time series imputation and forecasting with structured state space models, Trans. Mach. Learn. Res. (2023). , https://open- review.net/forum?id=hHiIbk7ApW
2023
-
[25]
Solís-García, B
J. Solís-García, B. Vega-Márquez, J.A. Nepomuceno, I.A. Nepomuceno-Chamorro, Timba: Time series imputation with bi-directional mamba blocks and diffusion mod- els, (2024). arXiv preprint arXiv:2410.05916
2024 arXiv
-
[26]
Y. Song, P. Dhariwal, Improved techniques for training consistency models, in: The Twelfth International Conference on Learning Representations, 2024. https:// openreview.net/forum?id=WNzy9bRDvG
2024
-
[27]
Z. Geng, A. Pokle, W. Luo, J. Lin, J.Z. Kolter, Consistency models made easy, arXiv preprint arXiv:2406.14548 (2024)
2024 arXiv
-
[28]
C. Lu, Y. Song, Simplifying, stabilizing and scaling continuous-time consistency models, (2024). arXiv preprint arXiv:2410.11081
2024 arXiv
-
[29]
S. Luo, Y. Tan, L. Huang, J. Li, H. Zhao, Latent consistency models: synthesizing high- resolution images with few-step inference, (2023). arXiv preprint arXiv:2310.04378
2023 arXiv
-
[30]
Rombach, A
R. Rombach, A. Blattmann, D. Lorenz, P. Esser, B. Ommer, High-resolution image synthesis with latent diffusion models, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2022, pp. 10684–10695
2022
-
[31]
Karras, M
T. Karras, M. Aittala, T. Aila, S. Laine, Elucidating the design space of diffusion- based generative models, Adv. Neural Inf. Process. Syst. 35 (2022) 26565– 26577
2022
-
[32]
Y. Song, J. Sohl-Dickstein, D.P. Kingma, A. Kumar, S. Ermon, B. Poole, Score-based generative modeling through stochastic differential equations, in: International Conference on Learning Representations, 2021. https://openreview.net/forum?id= PxTIG12RRHS
2021
-
[33]
Charbonnier, L
P. Charbonnier, L. Blanc-Féraud, G. Aubert, M. Barlaud, Deterministic edge- preserving regularization in computed imaging, IEEE Trans. Image Process. 6(2) (1997) 298–311
1997
-
[34]
Defazio, X.A
A. Defazio, X.A. Yang, A. Khaled, K. Mishchenko, H. Mehta, A. Cutkosky, The road less scheduled, in: The Thirty-Eighth Annual Conference on Neural Information Processing Systems, 2024. https://openreview.net/forum?id=0XeNkkENuI
2024
-
[35]
Ronneberger, P
O. Ronneberger, P. Fischer, T. Brox, U-net: convolutional networks for biomed- ical image segmentation, in: Medical Image Computing and Computer-Assisted Intervention–MICCAI 2015: 18th International Conference, Munich, Germany, Oc- tober 5–9, 2015, Proceedings, Part III 18, Sp...
2015
-
[36]
Z. Wu, S. Pan, G. Long, J. Jiang, C. Zhang, Graph wavenet for deep spatial-temporal graph modeling, (2019). arXiv preprint arXiv:1906.00121 Knowledge-Based Systems 327 (2025) 114117 13 J. Solís-García et al
2019 arXiv
-
[37]
J. Gao, B. Ribeiro, On the equivalence between temporal and static equivariant graph representations, in: International Conference on Machine Learning, PMLR, 2022, pp. 7052–7076
2022
-
[38]
X. Yi, Y. Zheng, J. Zhang, T. Li, St-mvl: filling missing values in geo-sensory time series data, in: Proceedings of the 25th International Joint Conference on Artificial Intelligence, 2016
2016
-
[39]
Y. Li, R. Yu, C. Shahabi, Y. Liu, Diffusion convolutional recurrent Neural Network: data-driven traffic forecasting, in: International Conference on Learning Represen- tations, 2018. https://openreview.net/forum?id=SJiHXGWAZ
2018
-
[40]
Z. Wu, S. Pan, G. Long, J. Jiang, C. Zhang, Graph wavenet for deep spatial-temporal graph modeling, in: Proceedings of the Twenty-Eighth International Joint Confer- ence on Artificial Intelligence, IJCAI-19, International Joint Conferences on Arti- ficial Intelligence Organizati...
2019
-
[41]
Reyna, C
M.A. Reyna, C. Josef, S. Seyedi, R. Jeter, S.P. Shashikumar, M.B. Westover, A. Sharma, S. Nemati, G.D. Clifford, Early Prediction of sepsis from clinical data: the physionet/computing in cardiology challenge 2019, in: 2019 Computing in Car- diology (CinC), IEEE, 2019, pp. Page–1
2019
-
[42]
H. Zhou, S. Zhang, J. Peng, S. Zhang, J. Li, H. Xiong, W. Zhang, Informer: be- yond efficient transformer for long sequence time-series forecasting, in: The Thirty- Fifth AAAI Conference on Artificial Intelligence, AAAI 2021, Virtual Conference, volume 35, AAAI Press, 2021, pp. 1...
2021
-
[43]
S. Guo, Y. Lin, H. Wan, X. Li, G. Cong, Learning dynamics and heterogeneity of spatial-temporal graph data for traffic forecasting, IEEE Trans. Knowl. Data Eng. 34(11) (2021) 5415–5428
2021
-
[44]
A. Cini, I. Marisca, Torch Spatiotemporal, 2022. https://github.com/ TorchSpatiotemporal/tsl
2022
-
[45]
White, P
I.R. White, P. Royston, A.M. Wood, Multiple imputation using chained equations: issues and guidance for practice, Stat. Med. 30(4) (2011) 377–399
2011
-
[46]
H.-F. Yu, N. Rao, I.S. Dhillon, Temporal regularized matrix factorization for high- dimensional time series prediction, Adv. Neural Inf. Process. Syst. 29 (2016)
2016
-
[47]
X. Chen, Z. He, Y. Chen, Y. Lu, J. Wang, Missing traffic data imputation and pattern discovery with a bayesian augmented tensor factorization model, Transp. Res. Part C 104 (2019) 66–77
2019
-
[48]
Mulyadi, E
A.W. Mulyadi, E. Jun, H.-I. Suk, Uncertainty-aware variational-recurrent imputation network for clinical time series, IEEE Trans. Cybern. 52(9) (2021) 9684–9694
2021
-
[49]
L. Liu, H. Jiang, P. He, W. Chen, X. Liu, J. Gao, J. Han, On the variance of the adaptive learning rate and beyond, (2019). arXiv preprint arXiv:1908.03265
2019 arXiv
-
[50]
Van Rossum, F.L
G. Van Rossum, F.L. Drake, Python 3 Reference Manual, CreateSpace, Scotts Valley, CA, 2009
2009
-
[51]
Paszke, S
A. Paszke, S. Gross, S. Chintala, G. Chanan, E. Yang, Z. DeVito, Z. Lin, A. Desmaison, L. Antiga, A. Lerer, Automatic differentiation in pytorch, in: NIPS-W, 2017
2017
-
[52]
Falcon, The PyTorch Lightning team, PyTorch Lightning, 2019, (????)
W. Falcon, The PyTorch Lightning team, PyTorch Lightning, 2019, (????). https: //github.com/Lightning-AI/lightning. https://doi.org/10.5281/zenodo.3828935
2019 doi
-
[53]
Harris, K.J
C.R. Harris, K.J. Millman, S.J. van der Walt, R. Gommers, P. Virtanen, D. Cour- napeau, E. Wieser, J. Taylor, S. Berg, N.J. Smith, R. Kern, M. Picus, S. Hoyer, M.H. van Kerkwijk, M. Brett, A. Haldane, J.F. del Río, M. Wiebe, P. Peterson, P. Gérard-Marchant, K. Sheppard, T. Red...
2020 doi
-
[54]
team, pandas-dev/pandas: 1.4.4, 2020, (????)
T.p.d. team, pandas-dev/pandas: 1.4.4, 2020, (????). https://doi.org/10.5281/ zenodo.3509134
2020
-
[55]
McKinney, Data structures for statistical computing in python, in: S
W. McKinney, Data structures for statistical computing in python, in: S. van der Walt, J. Millman (Eds.), Proceedings of the 9th Python in Science Conference, 2010, pp. 56–61. https://doi.org/10.25080/Majora-92bf1922-00a
2010 doi
-
[56]
Yadan, Hydra - a framework for elegantly configuring complex applications, 2019, (Github)
O. Yadan, Hydra - a framework for elegantly configuring complex applications, 2019, (Github). https://github.com/facebookresearch/hydra
2019
-
[57]
Merkel, Docker: lightweight linux containers for consistent development and deployment, Linux J
D. Merkel, Docker: lightweight linux containers for consistent development and deployment, Linux J. 2014(239) (2014) 2. Knowledge-Based Systems 327 (2025) 114117 14
2014
-
[2022]
https://openreview.net/forum?id=kOu3-S3wJ7
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.