REVIEW 4 major objections 5 minor 242 references
TailBooster: A Dual-Layer Generative Framework for Extreme Value Augmentation with Operational Validity Enforcement
T0 review · 4 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read A dual-layer pipeline cuts extreme-value prediction error by up to 57% by training generative models on tails and autoencoder-cleaning the output.
desk verdict TailBooster is a sensible, well-engineered augmentation pipeline, but its headline utility gains are not yet cleanly attributable to the framework because training-set size is not controlled. 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 mechanism is the two-layer anomaly-detection bracket around a Tabular Variational Autoencoder. The first layer, IQR-based extreme-subset extraction, isolates tail records so the generative models can learn tail patterns rather than the mass of nominal data. The second layer, autoencoder-based operational cleaning, learns joint constraints from user-specified operationally correlated features and filters synthetic records that violate that learned envelope, with the anomaly threshold fixed at the 99th percentile of reconstruction errors. Together they produce the three output datasets whose comparisons isolate the contribution of each layer.
What would settle it
A concrete test is to apply TailBooster to a different month or region of flight records and compare the reported MAE reductions against the same six regression baselines; if the 47–49% and 29–57% gains shrink substantially outside the January 2023 New York State setting, the effect is dataset-specific rather than a general property of the pipeline. A second check is to measure operational validity quantitatively, using flight-performance or route-level plausibility bounds, rather than the paper's visual pairwise-correlation inspection.
Extended reading notes
Core claim
The central claim is that tail under-representation and operational invalidity can be jointly addressed in mixed-type tabular data by bracketing a generative stage with two anomaly detection layers. A statistical layer extracts extremes of user-defined target features using Tukey's interquartile-range fences, giving tail-concentrated training signal to dedicated generative models. A deep-learning layer trains autoencoders on operationally correlated features and removes synthetic records whose reconstruction error exceeds the 99th percentile of real-data errors, enforcing an empirical operational envelope without symbolic rules. The paper reports that this combination markedly improves operational validity and that augmenting either synthetic or real training data with the cleaned synthetic extremes consistently improves extreme-value regression, with the largest gains concentrated in the upper tail of arrival delay.
Load-bearing premise
The paper assumes that a single autoencoder trained on four operationally correlated features from the same historical data can define a reliable operational-validity envelope, with the 99th-percentile reconstruction-error threshold applied as a universal cutoff.
Editorial extensions
If this is right
- If the results hold, practitioners with real historical data can improve extreme-event forecasting by augmenting the tail regions with operationally valid synthetic extremes, reducing error even when real data are available.
- Practitioners without access to real data can use TailBooster-generated synthetic sets that outperform conventionally generated synthetic data on extreme-value prediction by 29–57% in MAE.
- The framework's model-agnostic design means future tabular generative models can be swapped into the pipeline without re-engineering the anomaly-detection layers.
- The data-driven cleaning layer removes the need for hand-crafted operational rules, making the approach transferable to domains where governing equations are unknown.
- The reported gains are consistent across six regression algorithms spanning tree-based, kernel-based, and instance-based families, suggesting the improvement is a property of the augmented data rather than of a single model.
Reading between the lines
- A natural extension is replacing the single IQR multiplier with an adaptive threshold or a Peaks-Over-Threshold fit, which could improve performance on heavier-tailed features where extreme subsets are very sparse.
- The 99th-percentile autoencoder threshold is treated as universal; a sensitivity analysis across thresholds and across feature subsets would reveal whether the cleaning layer can be tuned for different operational regimes without sacrificing valid records.
- The framework's reliance on user-provided lists of target and operationally correlated features suggests an interesting extension: automatically discovering operationally correlated feature sets from data, which would remove a remaining manual step.
- Since the cleaning layer learns from historical data, its effectiveness may degrade in non-stationary operational conditions; testing on temporally shifted data would clarify whether the empirical envelope needs periodic retraining.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes TailBooster, a dual-layer generative framework for augmenting extreme values in mixed-type tabular data. The pipeline combines IQR-based extreme-subset extraction (statistical layer), dedicated Tabular Variational Autoencoder (TVAE) generative models, a relational validity filter for origin–destination pairs, and an autoencoder-based cleaning step that discards synthetic records violating an empirically learned operational envelope. The framework is evaluated on U.S. domestic flight records from January 2023 across five dimensions: diversity, statistical similarity, fidelity, operational validity, and utility. The authors report that training regression models on the Augmented Synthetic dataset reduces MAE by 47–49% for extreme air time and 29–57% for extreme arrival delay relative to the Naïve Synthetic baseline, and that the Augmented Real dataset outperforms Real data across all six regression algorithms.
Significance. If the utility and operational-validity claims hold, TailBooster addresses a genuine gap in the literature: no existing method simultaneously targets tail under-representation in mixed-type tabular data and enforces operational validity in a fully data-driven fashion. The framework is model-agnostic, the paper gives a complete algorithmic description, and the authors promise public code and data, which are concrete strengths. However, the central utility claims are currently undermined by a data-leakage issue in the Augmented Real scenario and by a training-set-size confound in the Augmented Synthetic comparison, while the operational validity evidence remains qualitative. These issues are fixable with additional experiments, so the paper merits a major revision rather than rejection, but the significance is conditional on the central claims surviving those controls.
major comments (4)
- [§3.3.5, §F, Table 8] The Augmented Real utility scenario leaks test records into the training set. D_aug is defined as D ∪ {cleaned synthetic extremes}, and D is the full historical dataset that is partitioned into training and test subsets for evaluation. Training a regressor on D_aug therefore includes the test partition in its training data, which alone can explain the reduced MAE reported in the Augmented Real column of Table 8. The authors must either construct D_aug from the training partition only, or remove the test records from D before forming D_aug, and then re-run the evaluation.
- [§3.3.5, Tables 2 and 8] The Augmented Synthetic vs. Naïve Synthetic comparison is confounded by training-set size. According to Table 2, Naïve Synthetic contains 2,751 extreme air-time records and 5,136 extreme arrival-delay records, while Augmented Synthetic contains 6,255 and 9,938, respectively. Since both datasets are used to train regressors on the extreme subsets, the larger training sets alone could reduce MAE, particularly for k-NN and SVR. The paper reports no size-matched control, such as oversampling the Naïve Synthetic extremes or subsampling the Augmented Synthetic extremes to equal counts. Without such a control, the reported 47–49% and 29–57% MAE reductions cannot be attributed to the dual-layer pipeline rather than to increased training data.
- [§3.3.4, §5, Figure 4] Operational validity, one of the two primary improvement targets, is only assessed qualitatively through pairwise scatter plots (Figure 4). The paper itself acknowledges in Section 5 that this dimension 'is assessed visually through pairwise correlation plots rather than through a quantitative score', which prevents its incorporation into hyperparameter tuning and limits comparability across studies. The claim that operational cleaning 'markedly improved' validity would be much stronger with a quantitative metric, such as the fraction of synthetic records falling outside the historical operational envelope, or a distance-based score against the real manifold.
- [§4.5, Table 8] The MAE values in Table 8 are point estimates with no variance information. No repeated runs, random seeds, or confidence intervals are reported for any regression model. Given the small extreme-subset sizes and the intrinsic variability of extreme-value regression, the statistical significance of the differences between scenarios is unclear. The authors should provide standard deviations or confidence intervals across multiple seeds, and ideally report the RMSE and R² values they state were 'consistent' with the MAE results.
minor comments (5)
- [Table 1] The symbols used in Table 1 (✓, /times, /calcula◎or) are unconventional and render poorly; please replace them with standard checkmarks/crosses and a clear legend.
- [Figure 5] Figure 5 would be easier to read if each panel carried an explicit subtitle matching the training dataset (Real, Naïve Synthetic, Augmented Synthetic, Augmented Real); currently the reader must refer to the caption text to map panels.
- [§4.5] The statement that RMSE and R² values 'showed trends consistent with the MAE results' is not verifiable; include these metrics in a supplementary table or appendix.
- [Algorithm 1] In Algorithm 1, the comment on line 5 ('Autoencoder training precedes generative model training...') is redundant because the procedure already makes this clear; consider removing it to simplify the pseudocode.
- [Throughout] The spelling of 'Naïve' is inconsistent (e.g., 'Naïve' in most places but 'naive' in the abstract); please unify the spelling.
Circularity Check
Operational-validity gain restates the cleaning filter, and Augmented Real utility is evaluated on test data included in the training set; the central Augmented Synthetic utility claim remains independent but size-confounded.
-
self definitional
[Section 3.2.E (autoencoder cleaning) and Section 4.4 (operational assessment, Figure 4c)]
"the implausible air time–distance pairs visible in Figure 4a, whose values fall outside the historical ranges, are absent from Figure 4c, reflecting the effect of the autoencoder-based cleaning layer, which was trained on the operationally correlated features (“ICAO Origin Airport”, “ICAO Destination Airport”, “Air Time (min)”, and “Distance (miles)”) to learn the empirical operational envelope of historical flight records and remove synthetic records that violate it."
The cleaning layer is defined over X_c that includes “Air Time (min)” and “Distance (miles)”, and the operational-validity evidence is the disappearance of air time–distance pairs outside the historical ranges after cleaning. That evidence restates the filter's own decision rule: records violating the learned envelope are discarded, so the surviving records trivially respect that envelope. Reporting improved air time–distance correlation after cleaning is therefore a direct consequence of the cleaning operation, not an independent test of operational validity.
-
other
[Section 3.2.F (Output) / Algorithm 1 line 23 and Section 3.3.5 (Utility Assessment)]
"Only the real dataset was partitioned into training and test subsets; all other datasets were used exclusively for training. ... Daug ← D∪ S Ntf k=1 ˜Scleaned k // “augmented real” dataset"
Algorithm 1 defines the Augmented Real dataset as the full real dataset D plus synthetic extremes. The utility protocol partitions only the real dataset into training and test subsets and then trains on Augmented Real while testing on Real. Because D_aug contains all of D by construction, the training set includes the test records themselves. The reported MAE reduction of Augmented Real over Real is therefore at least partly an artifact of training on the evaluation target, not a held-out predictive gain. This makes the 'Augmented Real beats Real' result circular with respect to the evaluation split: the evaluation input includes the evaluation target by definition.
full rationale
The core generative-utility comparison (Augmented Synthetic vs. Naïve Synthetic) is not circular in the strict sense: no fitted parameter from the utility experiment is reused as the outcome, and the MAE reductions are an empirical result. However, two load-bearing evaluation claims do reduce by construction. First, the operational-validity improvement is self-definitional for the air time–distance correlation: the autoencoder cleaning layer is trained on X_c containing 'Air Time (min)' and 'Distance (miles)', and the operational-validity evidence is the disappearance of implausible air time–distance pairs after cleaning; the paper itself attributes this to the cleaning layer, so the evaluation restates the filter's decision rule rather than independently validating it. Second, the Augmented Real utility comparison is circular with respect to the split: Algorithm 1 defines D_aug as D plus synthetic extremes, while the evaluation tests on a partition of D, so training on D_aug includes the test records and the reported gains over Real are partly a memorization artifact. The Naïve-vs-Augmented Synthetic comparison is also confounded by training-set size (2,751 vs. 6,255 air-time extremes; 5,136 vs. 9,938 delay extremes) with no size-matched or oversampling control, though that is a missing control rather than a definitional circularity. Self-citations to the authors' earlier evaluation and tuning frameworks (Aly et al., 2026) are present and used for the evaluation protocol, but they are not the main source of the circularity identified here. Score 6 reflects partial circularity in two of the primary evaluation claims, while the central synthetic-data utility result retains independent content.
Assumptions & free parameters
free parameters (3)
- IQR multiplier =
1.5 (fixed Tukey fence)
- Anomaly threshold percentile p =
99
- Sampling ratio r =
1.2
assumptions (4)
- domain assumption IQR-based extremes (outside Q1-1.5*IQR, Q3+1.5*IQR) capture operationally relevant extreme records.
- domain assumption An autoencoder trained on the same operational features from the same historical data learns a trustworthy operational validity envelope.
- domain assumption A single month of New York State US domestic flights is representative enough to support the reported gains.
- domain assumption Training and testing exclusively on extreme subsets yields meaningful regression utility estimates.
Cite this review
Pith. "Pith review of TailBooster: A Dual-Layer Generative Framework for Extreme Value Augmentation with Operational Validity Enforcement." pith.science (2026). https://pith.science/paper/4D4KQEHM
@misc{pith2026260811951,
author = {Pith},
title = {Pith review of: TailBooster: A Dual-Layer Generative Framework for Extreme Value Augmentation with Operational Validity Enforcement},
year = {2026},
howpublished = {\url{https://pith.science/paper/4D4KQEHM}},
note = {Machine review of arXiv:2608.11951}
}
read the original abstract
Extreme events in air transport, such as severe arrival delays and abnormal air times, cause cascading network disruptions with substantial operational, economic, and safety costs. Such events are rare in historical records, leaving insufficient training signal for machine learning models. Synthetic data augmentation offers a principled solution, but conventional generative models under-represent distributional tails and give no guarantee against operationally infeasible instances, such as a short air time paired with a long flight distance. No existing approach addresses both limitations for mixed-type tabular records. We propose TailBooster, a dual-layer generative framework combining generative modelling with two anomaly detection layers. A statistical layer extracts extremes via the interquartile range, supplying tail-concentrated training signal to dedicated generative models, here a Tabular Variational Autoencoder. A deep learning layer then applies autoencoder-based cleaning, discarding synthetic records that violate the operational envelope learned from historical data. The framework was evaluated on US flight records across five dimensions: diversity, statistical similarity, fidelity, operational validity, and utility, the latter two being the primary improvement targets. Data-driven cleaning markedly improved operational validity, while targeted augmentation enhanced utility for extreme-event prediction. Across six regression algorithms, training on the framework's records reduced Mean Absolute Error by 47-49% on extreme air time and 29-57% on extreme arrival delay prediction relative to conventional synthetic data, with comparable gains when real records were enriched with synthetic extremes. Being fully data-driven and model-agnostic, TailBooster extends to domains where extreme-event prediction is critical and domain-specific rules are unavailable.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
2020 , url =
Automation in Air Traffic Management: Long-term Vision and Initial Research Roadmap , institution =. 2020 , url =
2020
-
[2]
2020 , url =
European ATM Master Plan - Digitalising Europe's Aviation Infrastructure , institution =. 2020 , url =
2020
-
[3]
2020 , url =
Fly AI Report - Demystifying and Accelerating AI in Aviation/ATM , institution =. 2020 , url =
2020
-
[4]
2023 , url =
SESAR Innovation Pipeline - Air Traffic Management Research and Innovation , institution =. 2023 , url =
2023
-
[5]
2020 , url =
The Impact of the General Data Protection Regulation (GDPR) on Artificial Intelligence , institution =. 2020 , url =
2020
-
[6]
2016 , url =
General Data Protection Regulation (GDPR) , author =. 2016 , url =
2016
-
[7]
Automation in Air Traffic Control: Trust, Teamwork, Resilience, Safety , journal =. 2022 , month =. doi:10.1016/j.trpro.2022.11.003 , url =
-
[8]
Machine Learning for Synthetic Data Generation: A Review , journal =
Yingzhou Lu and Minjie Shen and Huazheng Wang and Xiao Wang and Capucine van Rechem and Wenqi Wei , year =. Machine Learning for Synthetic Data Generation: A Review , journal =
Show all 242 references
-
[9]
A Survey on Data Collection for Machine Learning: A Big Data - AI Integration Perspective , year=
Roh, Yuji and Heo, Geon and Whang, Steven Euijong , journal=. A Survey on Data Collection for Machine Learning: A Big Data - AI Integration Perspective , year=. doi:10.1109/TKDE.2019.2946162 , url=
2019
-
[10]
and Dervovic, Danial and Mahfouz, Mahmoud and Tillman, Robert E
Assefa, Samuel A. and Dervovic, Danial and Mahfouz, Mahmoud and Tillman, Robert E. and Reddy, Prashant and Veloso, Manuela , title =. 2021 , isbn =. doi:10.1145/3383455.3422554 , booktitle =
2021
-
[11]
PLOS Digital Health , publisher =
Synthetic data in health care: A narrative review , year =. PLOS Digital Health , publisher =. doi:10.1371/journal.pdig.0000082 , author =
-
[12]
Synthetic to Real Gap Estimation of Autonomous Driving Datasets using Feature Embedding , year=
Gadipudi, Nivesh and Elamvazuthi, Irraivan and Sanmugam, Mahindra and Izhar, Lila Iznita and Prasetyo, Tindyo and Jegadeeshwaran, R and Ali, Syed Saad Azhar , booktitle=. Synthetic to Real Gap Estimation of Autonomous Driving Datasets using Feature Embedding , year=. doi:10.11...
-
[13]
Generative Adversarial Nets , url =
Goodfellow, Ian and Pouget-Abadie, Jean and Mirza, Mehdi and Xu, Bing and Warde-Farley, David and Ozair, Sherjil and Courville, Aaron and Bengio, Yoshua , booktitle =. Generative Adversarial Nets , url =. 2014 , month =
2014
-
[14]
and Welling, Max , title =
Kingma, Diederik P. and Welling, Max , title =. 2019 , volume =. doi:10.1561/2200000056 , journal =
2019 doi
-
[15]
2020 , issue_date =
Goodfellow, Ian and Pouget-Abadie, Jean and Mirza, Mehdi and Xu, Bing and Warde-Farley, David and Ozair, Sherjil and Courville, Aaron and Bengio, Yoshua , title =. 2020 , issue_date =. doi:10.1145/3422622 , journal =
2020 doi
-
[16]
Denoising Diffusion Probabilistic Models , url =
Ho, Jonathan and Jain, Ajay and Abbeel, Pieter , booktitle =. Denoising Diffusion Probabilistic Models , url =
-
[17]
Cohen and Adrian Weller , year =
James Jordon and Lukasz Szpruch and Florimond Houssiau and Mirko Bottarelli and Giovanni Cherubin and Carsten Maple and Samuel N. Cohen and Adrian Weller , year =. Synthetic Data -- what, why and how? , journal =
-
[18]
Time-series Generative Adversarial Networks , url =
Yoon, Jinsung and Jarrett, Daniel and van der Schaar, Mihaela , booktitle =. Time-series Generative Adversarial Networks , url =
-
[19]
2022 , isbn =
Li, Xiaomin and Metsis, Vangelis and Wang, Huangyingrui and Ngu, Anne Hee Hiong , title =. 2022 , isbn =. doi:10.1007/978-3-031-09342-5_13 , booktitle =
2022 doi
-
[20]
and Lee, Yang W
Pipino, Leo L. and Lee, Yang W. and Wang, Richard Y. , title =. 2002 , volume =. doi:10.1145/505248.506010 , journal =
2002
-
[21]
2020 , month =
Dina Kampouraki and Robert Riemann and Vìtor Bernardo and Maria Enescu and Marek Jessen and Kostantina Vemou and Stefano Leucci , title =. 2020 , month =
2020
-
[22]
The Real Deal about Synthetic Data , journal =
Fernando Lucini , year =. The Real Deal about Synthetic Data , journal =
-
[23]
Proceedings of the 11th International Conference on Information Quality, MIT, Cambridge, MA, USA, November 10-12, 2006 , pages =
Valerie Sessions and Marco Valtorta , title =. Proceedings of the 11th International Conference on Information Quality, MIT, Cambridge, MA, USA, November 10-12, 2006 , pages =. 2006 , url =
2006
-
[24]
Data scarcity, robustness and extreme multi-label classification , journal =
Rohit Babbar and Bernard Schölkopf , year =. Data scarcity, robustness and extreme multi-label classification , journal =
-
[25]
Realistic Synthetic Financial Transactions for Anti-Money Laundering Models , url =
Altman, Erik and Blanu. Realistic Synthetic Financial Transactions for Anti-Money Laundering Models , url =. Advances in Neural Information Processing Systems , pages =
-
[26]
2022 , isbn =
Liu, Chunli and Ventre, Carmine and Polukarov, Maria , title =. 2022 , isbn =. doi:10.1145/3533271.3561704 , booktitle =
2022
-
[27]
2010 , issn =
Using micro-simulation to create a synthesised data set and test policy options: The case of health service effects under demographic ageing , journal =. 2010 , issn =. doi:10.1016/j.healthpol.2010.05.014 , url =
2010 doi
-
[28]
2021 , isbn =
Sun, Siao and Wang, Fusheng and Rashidian, Sina and Kurc, Tahsin and Abell-Hart, Kayley and Hajagos, Janos and Zhu, Wei and Saltz, Mary and Saltz, Joel , title =. 2021 , isbn =. doi:10.1007/978-3-030-93663-1_12 , pages =
2021 doi
-
[29]
Virtual passengers for real car solutions: synthetic datasets , journal =
Paola Natalia Canas and Juan Diego Ortega and Marcos Nieto and Oihana Otaegui , year =. Virtual passengers for real car solutions: synthetic datasets , journal =
-
[30]
2024 , issn =
Fake it till you make it: Synthetic data for emerging carsharing programs , journal =. 2024 , issn =. doi:10.1016/j.trd.2024.104067 , url =
2024
-
[31]
2022 , issn =
A Novel Method in Intelligent Synthetic Data Creation for Machine Learning-based Manufacturing Quality Control , journal =. 2022 , issn =. doi:10.1016/j.ifacol.2022.09.186 , url =
2022 doi
-
[32]
2024 , issn =
A comparison of methods for generating synthetic training data for domain adaption of deep learning models in ultrasonic non-destructive evaluation , journal =. 2024 , issn =. doi:10.1016/j.ndteint.2023.102978 , url =
2024
-
[33]
2024 , month =
D.2.1 State of the art , institution =. 2024 , month =
2024
-
[34]
Unified Training of Universal Time Series Forecasting Transformers , journal =
Gerald Woo and Chenghao Liu and Akshat Kumar and Caiming Xiong and Silvio Savarese and Doyen Sahoo , year =. Unified Training of Universal Time Series Forecasting Transformers , journal =
-
[35]
2020 , issn =
Daniil Ryabko , title =. 2020 , issn =. doi:10.1007/978-3-030-54304-4 , url =
2020 doi
-
[36]
2024 , issn =
Can I trust my fake data – A comprehensive quality assessment framework for synthetic tabular data in healthcare , journal =. 2024 , issn =. doi:10.1016/j.ijmedinf.2024.105413 , url =
2024
-
[37]
2022 , issn =
Application of tabular data synthesis using generative adversarial networks on machine learning-based multiaxial fatigue life prediction , journal =. 2022 , issn =. doi:10.1016/j.ijpvp.2022.104779 , url =
2022
-
[38]
2024 , issn =
ConvGeN: A convex space learning approach for deep-generative oversampling and imbalanced classification of small tabular datasets , journal =. 2024 , issn =. doi:10.1016/j.patcog.2023.110138 , url =
2024
-
[39]
2022 , issn =
Synthetic data generation for tabular health records: A systematic review , journal =. 2022 , issn =. doi:10.1016/j.neucom.2022.04.053 , url =
2022 doi
-
[40]
2024 , series =
Chapter 8 - Medical image synthesis and reconstruction using generative adversarial networks , booktitle =. 2024 , series =. doi:10.1016/B978-0-32-385124-4.00018-0 , url =
2024 doi
-
[41]
2023 , month =
Synthetic image data generation using BIM and computer graphics for building scene understanding , journal =. 2023 , month =. doi:10.1016/j.autcon.2023.105016 , url =
2023
-
[42]
2024 , month =
A survey of GPT-3 family large language models including ChatGPT and GPT-4 , journal =. 2024 , month =. doi:10.1016/j.nlp.2023.100048 , url =
2024
-
[43]
A survey on text generation using generative adversarial networks , journal =
Gustavo H. A survey on text generation using generative adversarial networks , journal =. 2021 , month =. doi:10.1016/j.patcog.2021.108098 , url =
2021
-
[44]
2023 , month =
Generative emotional AI for speech emotion recognition: The case for synthetic emotional speech augmentation , journal =. 2023 , month =. doi:10.1016/j.apacoust.2023.109425 , url =
2023
-
[45]
2022 , month =
GAN computers generate arts? A survey on visual arts, music, and literary text generation using generative adversarial network , journal =. 2022 , month =. doi:10.1016/j.displa.2022.102237 , url =
2022
-
[46]
2022 , month =
Synthetic data generation with deep generative models to enhance predictive tasks in trading strategies , journal =. 2022 , month =. doi:https://doi.org/10.1016/j.ribaf.2022.101747 , url =
2022
-
[47]
2022 , month =
Synthetic demand data generation for individual electricity consumers : Generative Adversarial Networks (GANs) , journal =. 2022 , month =. doi:https://doi.org/10.1016/j.egyai.2022.100161 , url =
2022
-
[48]
Sensors , volume =
Hu, Chaochen and Sun, Zihan and Li, Chao and Zhang, Yong and Xing, Chunxiao , title =. Sensors , volume =. 2023 , month =
2023
-
[49]
2024 , month =
FIND: A Synthetic weather generator to control drought Frequency, Intensity, and Duration , journal =. 2024 , month =. doi:https://doi.org/10.1016/j.envsoft.2023.105927 , url =
2024
-
[50]
2023 , month =
A spatially-dependent synthetic global dataset of extreme sea level events , journal =. 2023 , month =. doi:10.1016/j.wace.2023.100596 , url =
2023
-
[51]
SynMob: Creating High-Fidelity Synthetic GPS Trajectory Dataset for Urban Mobility Analysis , url =
Zhu, Yuanshao and Ye, Yongchao and Wu, Ying and Zhao, Xiangyu and Yu, James , booktitle =. SynMob: Creating High-Fidelity Synthetic GPS Trajectory Dataset for Urban Mobility Analysis , url =
-
[52]
2021 , month =
Generating a synthetic probabilistic daily activity-location schedule using large-scale, long-term and low-frequency smartphone GPS data with limited activity information , journal =. 2021 , month =. doi:10.1016/j.trc.2021.103408 , url =
2021
-
[53]
Artificial Intelligence in Education
Leiker, Daniel and Gyllen, Ashley Ricker and Eldesouky, Ismail and Cukurova, Mutlu , title=. Artificial Intelligence in Education. Posters and Late Breaking Results, Workshops and Tutorials, Industry and Innovation Tracks, Practitioners, Doctoral Consortium and Blue Sky , year=
-
[54]
A Simple Text to Video Model via Transformer , journal =
Gang Chen , year =. A Simple Text to Video Model via Transformer , journal =
-
[55]
Proceedings of the Fifth International Scientific Conference ``Intelligent Information Technologies for Industry'' (IITI'21) , year=
Polyakov, Vladimir and Mezhenin, Aleksandr and Vereskun, Vladimir and Korobeynikov, Anatoly and Shapovalov, Vasilii , title=. Proceedings of the Fifth International Scientific Conference ``Intelligent Information Technologies for Industry'' (IITI'21) , year=
-
[56]
Bringing up OpenSky: a large-scale ADS-B sensor network for research , year =
Sch\". Bringing up OpenSky: a large-scale ADS-B sensor network for research , year =. Proceedings of the 13th International Symposium on Information Processing in Sensor Networks , pages =
-
[57]
Aviation Data for Research , author =
-
[58]
Journal of Open Source Software , title=
Xavier. Journal of Open Source Software , title=. 2019 , volume=. doi:10.21105/joss.01518 , issn=
2019 doi
-
[59]
2023 , publisher=
Generative Deep Learning: Teaching Machines to Paint, Write, Compose, and Play , author=. 2023 , publisher=
2023
-
[60]
Improving Aircraft Turnaround Reliability , booktitle =
Schultz, Michael and Fricke, Hartmut , year =. Improving Aircraft Turnaround Reliability , booktitle =
-
[61]
Agent-based simulation for aircraft stand operations to predict ground time using machine learning , year=
Luo, Mingchuan and Schultz, Michael and Fricke, Hartmut and Desart, Bruno and Herrema, Floris and Barragán Montes, Rocío , booktitle=. Agent-based simulation for aircraft stand operations to predict ground time using machine learning , year=. doi:10.1109/DASC52595.2021.9594325 , url=
-
[62]
Operations Research Proceedings 2019 , year=
Asadi, Ehsan and Evler, Jan and Preis, Henning and Fricke, Hartmut , title=. Operations Research Proceedings 2019 , year=
2019
-
[63]
and Brandão, Diego and Carvalho, Diego and Ogasawara, Eduardo , year =
Carvalho, Leonardo and Sternberg, Alice and Maia Gonçalves, Leandro and Beatriz Cruz, Ana and Soares, Jorge A. and Brandão, Diego and Carvalho, Diego and Ogasawara, Eduardo , year =. On the relevance of data science for flight delay research: a systematic review , journal =
-
[64]
A Review of Flight Delay Prediction Methods , year=
Wang, Teng and Zheng, Yufan and Xu, Haiwen , booktitle=. A Review of Flight Delay Prediction Methods , year=. doi:10.1109/BDEE55929.2022.00029 , url=
2022
-
[65]
2015 , month =
Endogenous control of service rates in stochastic and dynamic queuing models of airport congestion , journal =. 2015 , month =. doi:10.1016/j.tre.2014.10.014 , url =
2015 doi
-
[66]
Agent-based vulnerability assessment at airport security checkpoints: A case study on security operator behavior , journal =
Stef Janssen and Arjan. Agent-based vulnerability assessment at airport security checkpoints: A case study on security operator behavior , journal =. 2020 , month =. doi:10.1016/j.trip.2020.100139 , url =
2020
-
[67]
Aerospace , volume =
Janssen, Stef and van der Sommen, Régis and Dilweg, Alexander and Sharpanskykh, Alexei , title =. Aerospace , volume =. 2020 , number =
2020
-
[68]
Applied Sciences , volume =
Chen, Bin and Zhao, Xing and Wu, Jin , title =. Applied Sciences , volume =. 2023 , number =
2023
-
[69]
Validation of Simulated Synthetic Air Traffic against Recorded Air Traffic in Germany , url =
Thomas Gräupl , booktitle=. Validation of Simulated Synthetic Air Traffic against Recorded Air Traffic in Germany , url =. 2017 , month =
2017
-
[70]
2023 , month =
Deep generative modelling of aircraft trajectories in terminal maneuvering areas , journal =. 2023 , month =. doi:10.1016/j.mlwa.2022.100446 , url =
2023
-
[71]
2023 , publisher =
Dalmau, Ramon and Gawinowski, Gilles , title =. 2023 , publisher =. doi:10.1109/TITS.2023.3235741 , journal =
2023
-
[72]
2024 , month =
The effectiveness of supervised clustering for characterising flight diversions due to weather , journal =. 2024 , month =. doi:10.1016/j.eswa.2023.121652 , url =
2024
-
[73]
Detecting flight trajectory anomalies and predicting diversions in freight transportation , journal =
Claudio. Detecting flight trajectory anomalies and predicting diversions in freight transportation , journal =. 2016 , month =. doi:10.1016/j.dss.2016.05.004 , url =
2016 doi
-
[74]
2018 , url =
SESAR Joint Undertaking , title =. 2018 , url =
2018
-
[75]
2024 , month =
Discriminative multimodal learning via conditional priors in generative models , journal =. 2024 , month =. doi:10.1016/j.neunet.2023.10.048 , url =
2024 doi
-
[76]
2024 , month =
AI-supported estimation of safety critical wind shear-induced aircraft go-around events utilizing pilot reports , journal =. 2024 , month =. doi:10.1016/j.heliyon.2024.e28569 , url =
2024 doi
-
[77]
2008 , month =
Runway sequencing with holding patterns , journal =. 2008 , month =. doi:10.1016/j.ejor.2006.06.076 , url =
2008 doi
-
[78]
Deep Learning , author=
-
[79]
On Discriminative vs
Ng, Andrew and Jordan, Michael , booktitle =. On Discriminative vs. Generative Classifiers: A comparison of logistic regression and naive Bayes , url =
-
[80]
Remote Sensing , volume =
Han, Lintao and Zhao, Yuchen and Lv, Hengyi and Zhang, Yisa and Liu, Hailong and Bi, Guoling and Han, Qing , title =. Remote Sensing , volume =. 2023 , month =
2023
-
[81]
Diffusion Models for Time Series Applications: A Survey , journal =
Lequan Lin and Zhengkun Li and Ruikun Li and Xuliang Li and Junbin Gao , year =. Diffusion Models for Time Series Applications: A Survey , journal =
-
[82]
2023 , publisher=
Haben, Stephen and Voss, Marcus and Holderbaum, William , title=. 2023 , publisher=. doi:10.1007/978-3-031-27852-5_5 , url=
2023 doi
-
[83]
Dive into Deep Learning , author=
-
[84]
Attention is All you Need , url =
Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N and Kaiser, ukasz and Polosukhin, Illia , booktitle =. Attention is All you Need , url =
-
[85]
Proceedings of the 7th international conference on research in air transportation , volume=
Bluesky ATC simulator project: an open data and open source approach , author=. Proceedings of the 7th international conference on research in air transportation , volume=. 2016 , url=
2016
-
[86]
Tackling the Generative Learning Trilemma with Denoising Diffusion GANs , journal =
Zhisheng Xiao and Karsten Kreis and Arash Vahdat , year =. Tackling the Generative Learning Trilemma with Denoising Diffusion GANs , journal =
-
[87]
Engineering Proceedings , volume =
Krauth, Timothé and Morio, Jérôme and Olive, Xavier and Figuet, Benoit and Monstein, Raphael , title =. Engineering Proceedings , volume =. 2021 , number =
2021
-
[88]
14th USA/Europe Air Traffic Management Seminar, ATM2021 , url =
A Framework to Evaluate Aircraft Trajectory Generation Methods , author =. 14th USA/Europe Air Traffic Management Seminar, ATM2021 , url =. 2021 , month =
2021
-
[89]
Journal of Machine Learning Research , year =
Laurens van der Maaten and Geoffrey Hinton , title =. Journal of Machine Learning Research , year =
-
[90]
Principal-component analysis and exploratory and confirmatory factor analysis , url =
Bryant, Fred and Yarnold, Paul , year =. Principal-component analysis and exploratory and confirmatory factor analysis , url =
-
[91]
2020 , publisher=
Machine Learning for Algorithmic Trading: Predictive Models to Extract Signals from Market and Alternative Data for Systematic Trading Strategies with Python , author=. 2020 , publisher=
2020
-
[92]
GitHub repository , howpublished =
Brendan Guillouet and James Van Hinsbergh , title =. GitHub repository , howpublished =. 2016 , publisher =
2016
-
[93]
and Guillouet, Brendan and Loubes, Jean-Michel and Royer, François , journal=
Besse, Philippe C. and Guillouet, Brendan and Loubes, Jean-Michel and Royer, François , journal=. Review and Perspective for Distance-Based Clustering of Vehicle Trajectories , year=
-
[94]
and Clifford, James , booktitle =
Berndt, Donald J. and Clifford, James , booktitle =. Using Dynamic Time Warping to Find Patterns in Time Series. , url =. 1994 , month =
1994
-
[95]
and Kollios, G
Vlachos, M. and Kollios, G. and Gunopulos, D. , booktitle=. Discovering similar multidimensional trajectories , year=. doi:10.1109/ICDE.2002.994784 , url=
2002
-
[96]
Proceedings of the Thirtieth International Conference on Very Large Data Bases - Volume 30 , pages =
Chen, Lei and Ng, Raymond , title =. Proceedings of the Thirtieth International Conference on Very Large Data Bases - Volume 30 , pages =. 2004 , isbn =
2004
-
[97]
Robust and fast similarity search for moving object trajectories , year =
Chen, Lei and \". Robust and fast similarity search for moving object trajectories , year =. doi:10.1145/1066157.1066213 , booktitle =
-
[98]
Rendiconti del Circolo Matematico di Palermo (1884-1940) , year=
Sur quelques points du calcul fonctionnel , author=. Rendiconti del Circolo Matematico di Palermo (1884-1940) , year=
1940
-
[99]
Grundz uge der mengenlehre , author=
-
[100]
Applied Sciences , volume =
Yadav, Parul and Gaur, Manish and Fatima, Nishat and Sarwar, Saqib , title =. Applied Sciences , volume =. 2023 , month =
2023
-
[101]
Testing for equal distributions in high dimension , volume =
Szekely, Gabor and Rizzo, Maria , year =. Testing for equal distributions in high dimension , volume =. InterStat , url =
-
[102]
International Journal of Adaptive Control and Signal Processing , volume =
Nuic, Angela and Poles, Damir and Mouillet, Vincent , title =. International Journal of Adaptive Control and Signal Processing , volume =. 2010 , month =. doi:10.1002/acs.1176 , url =
2010 doi
-
[103]
and Ellerbroek, Joost , title =
Sun, Junzi and Hoekstra, Jacco M. and Ellerbroek, Joost , title =. Aerospace , volume =. 2020 , month =
2020
-
[104]
and Rigopoulos, J.G
Waller, M.C. and Rigopoulos, J.G. and Blackman, D.R. and Berreen, T.F. , booktitle=. Considerations in the application of dynamic programming to optimal aircraft trajectory generation , year=
-
[105]
and Puechmorel, S
Delahaye, D. and Puechmorel, S. and Tsiotras, P. and Feron, E. , title=. Air Traffic Management and Systems , year=
-
[106]
Trajectory generation for aircraft subject to dynamic weather uncertainty , year=
Kamgarpour, Maryam and Dadok, Vera and Tomlin, Claire , booktitle=. Trajectory generation for aircraft subject to dynamic weather uncertainty , year=. doi:10.1109/CDC.2010.5717889 , url=
2010
-
[107]
Feasibility of LDACS1 cell planning in European airspace , year=
Hoffmann, Felix and Epple, Ulrich and Schnell, Michael and Fiebig, Uwe-Carsten , booktitle=. Feasibility of LDACS1 cell planning in European airspace , year=. doi:10.1109/DASC.2012.6383053 , url=
2012
-
[108]
and Ehammer, M
Rokitansky, C.-H. and Ehammer, M. and Graupl, Th. , booktitle=. Newsky - building a simulation environment for an integrated aeronautical network architecture , year=. doi:10.1109/DASC.2007.4391905 , url=
2007
-
[109]
2013 , issn =
Conflict probability estimation between aircraft with dynamic importance splitting , journal =. 2013 , issn =. doi:https://doi.org/10.1016/j.ssci.2012.05.010 , url =
2013 doi
-
[110]
and Couellan, N
Jarry, G. and Couellan, N. and Delahaye, D. , title=. Air Traffic Management and Systems IV , year=
-
[111]
2018 , month =
Jarry, Gabriel and Delahaye, Daniel and Nicol, Florence and F. 2018 , month =
2018
-
[112]
A Data-Driven Probabilistic Trajectory Model for Predicting and Simulating Terminal Airspace Operations , year=
Rocha Murça, Mayara Condé and de Oliveira, McWillian , booktitle=. A Data-Driven Probabilistic Trajectory Model for Predicting and Simulating Terminal Airspace Operations , year=. doi:10.1109/DASC50938.2020.9256644 , url=
2020
-
[113]
Clustering Climb Profiles for Vertical Trajectory Analysis , year=
Matthias Poppe and Jörg Buxbaum , booktitle=. Clustering Climb Profiles for Vertical Trajectory Analysis , year=
-
[114]
Interactive Trajectory Modification and Generation with FPCA , year=
Gabriel Jarry and Almoctar Hassoumi and Daniel Delahaye and Christophe Hurter , booktitle=. Interactive Trajectory Modification and Generation with FPCA , year=
-
[115]
Data driven modeling for the simulation of converging runway operations , year=
Eckstein, A , booktitle=. Data driven modeling for the simulation of converging runway operations , year=
-
[116]
Publications de l'Institut de Statistique de l'Université de Paris , year =
Sklar, M , title =. Publications de l'Institut de Statistique de l'Université de Paris , year =
-
[117]
Proceedings of the Twenty-First International Conference on Artificial Intelligence and Statistics , pages =
VAE with a VampPrior , author =. Proceedings of the Twenty-First International Conference on Artificial Intelligence and Statistics , pages =. 2018 , editor =
2018
-
[118]
Zico Kolter and Vladlen Koltun , year =
Shaojie Bai and J. Zico Kolter and Vladlen Koltun , year =. An Empirical Evaluation of Generic Convolutional and Recurrent Networks for Sequence Modeling , journal =
-
[119]
van Amersfoort , year =
Otto Fabius and Joost R. van Amersfoort , year =. Variational Recurrent Auto-Encoders , journal =
-
[120]
2021 , month =
TrajVAE: A Variational AutoEncoder model for trajectory generation , journal =. 2021 , month =. doi:10.1016/j.neucom.2020.03.120 , url =
2021 doi
-
[121]
TimeVAE: A Variational Auto-Encoder for Multivariate Time Series Generation , journal =
Abhyuday Desai and Cynthia Freeman and Zuhui Wang and Ian Beaver , year =. TimeVAE: A Variational Auto-Encoder for Multivariate Time Series Generation , journal =
-
[122]
Sensors , volume =
Jeon, Seungho and Seo, Jung Taek , title =. Sensors , volume =. 2024 , number =
2024
-
[123]
2023 , isbn =
Li, Hongming and Yu, Shujian and Principe, Jose , title =. 2023 , isbn =. doi:10.1609/aaai.v37i7.26031 , booktitle =
2023 doi
-
[124]
Proceedings of The 26th International Conference on Artificial Intelligence and Statistics , pages =
Vector Quantized Time Series Generation with a Bidirectional Prior Model , author =. Proceedings of The 26th International Conference on Artificial Intelligence and Statistics , pages =. 2023 , editor =
2023
-
[125]
Neural Discrete Representation Learning , url =
van den Oord, Aaron and Vinyals, Oriol and Kavukcuoglu, Koray , booktitle =. Neural Discrete Representation Learning , url =
-
[126]
C-RNN-GAN: Continuous recurrent neural networks with adversarial training , journal =
Olof Mogren , year =. C-RNN-GAN: Continuous recurrent neural networks with adversarial training , journal =
-
[127]
Hyland and Gunnar Rätsch , year =
Cristóbal Esteban and Stephanie L. Hyland and Gunnar Rätsch , year =. Real-valued (Medical) Time Series Generation with Recurrent Conditional GANs , journal =
-
[128]
Conditional Sig-Wasserstein GANs for Time Series Generation , journal =
Shujian Liao and Hao Ni and Lukasz Szpruch and Magnus Wiese and Marc Sabate-Vidales and Baoren Xiao , year =. Conditional Sig-Wasserstein GANs for Time Series Generation , journal =
-
[129]
Proceedings of the AAAI Conference on Artificial Intelligence , author=
SeqGAN: Sequence Generative Adversarial Nets with Policy Gradient , volume=. Proceedings of the AAAI Conference on Artificial Intelligence , author=. 2017 , month=. doi:10.1609/aaai.v31i1.10804 , number=
2017 doi
-
[130]
TransGAN: Two Pure Transformers Can Make One Strong GAN, and That Can Scale Up , url =
Jiang, Yifan and Chang, Shiyu and Wang, Zhangyang , booktitle =. TransGAN: Two Pure Transformers Can Make One Strong GAN, and That Can Scale Up , url =
-
[131]
TTS-CGAN: A Transformer Time-Series Conditional GAN for Biosignal Data Augmentation , journal =
Xiaomin Li and Anne Hee Hiong Ngu and Vangelis Metsis , year =. TTS-CGAN: A Transformer Time-Series Conditional GAN for Biosignal Data Augmentation , journal =
-
[132]
An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale , journal =
Alexey Dosovitskiy and Lucas Beyer and Alexander Kolesnikov and Dirk Weissenborn and Xiaohua Zhai and Thomas Unterthiner and Mostafa Dehghani and Matthias Minderer and Georg Heigold and Sylvain Gelly and Jakob Uszkoreit and Neil Houlsby , year =. An Image is Worth 16x16 Words:...
-
[133]
DiffWave: A Versatile Diffusion Model for Audio Synthesis , journal =
Zhifeng Kong and Wei Ping and Jiaji Huang and Kexin Zhao and Bryan Catanzaro , year =. DiffWave: A Versatile Diffusion Model for Audio Synthesis , journal =
-
[134]
ChiroDiff: Modelling chirographic data with Diffusion Models , journal =
Ayan Das and Yongxin Yang and Timothy Hospedales and Tao Xiang and Yi-Zhe Song , year =. ChiroDiff: Modelling chirographic data with Diffusion Models , journal =
-
[135]
Regular Time-series Generation using SGM , journal =
Haksoo Lim and Minjung Kim and Sewon Park and Noseong Park , year =. Regular Time-series Generation using SGM , journal =
-
[136]
U-Net: Convolutional Networks for Biomedical Image Segmentation , journal =
Olaf Ronneberger and Philipp Fischer and Thomas Brox , year =. U-Net: Convolutional Networks for Biomedical Image Segmentation , journal =
-
[137]
On the Constrained Time-Series Generation Problem , journal =
Andrea Coletta and Sriram Gopalakrishan and Daniel Borrajo and Svitlana Vyetrenko , year =. On the Constrained Time-Series Generation Problem , journal =
-
[138]
arXiv preprint arXiv:2403.01742 [cs] , year=
Diffusion-TS: Interpretable Diffusion for General Time Series Generation , author=. arXiv preprint arXiv:2403.01742 [cs] , year=
-
[139]
Tslearn, A Machine Learning Toolkit for Time Series Data , journal =
Romain Tavenard and Johann Faouzi and Gilles Vandewiele and Felix Divo and Guillaume Androz and Chester Holtz and Marie Payne and Roman Yurchak and Marc Ru. Tslearn, A Machine Learning Toolkit for Time Series Data , journal =. 2020 , volume =
2020
-
[140]
TranStats Database for Airline On-Time Performance , year =
-
[141]
Bureau of Transportation Statistics , url =
-
[142]
Advances in Neural Information Processing Systems , volume =
Xu, Lei and Skoularidou, Maria and Cuesta-Infante, Alfredo and Veeramachaneni, Kalyan , title =. Advances in Neural Information Processing Systems , volume =. 2019 , url =
2019
-
[143]
Kingma and Max Welling , title =
Diederik P. Kingma and Max Welling , title =. 2013 , howpublished =
2013
-
[144]
Proceedings of the Workshop on Autonomous Cybersecurity (AutonomousCyber '24) , year =
Towards Autonomous Cybersecurity: An Intelligent AutoML Framework for Autonomous Intrusion Detection , author =. Proceedings of the Workshop on Autonomous Cybersecurity (AutonomousCyber '24) , year =. doi:10.1145/3689933.3690833 , url =
-
[145]
arXiv preprint arXiv:1801.09808 , year=
The intriguing properties of model explanations , author=. arXiv preprint arXiv:1801.09808 , year=
-
[146]
ArXiv , year=
Towards a framework on tabular synthetic data generation: a minimalist approach: theory, use cases, and limitations , author=. ArXiv , year=
-
[147]
ArXiv , year=
Robust Variational Autoencoder for Tabular Data with Beta Divergence , author=. ArXiv , year=
-
[148]
2006 , publisher=
An introduction to copulas , author=. 2006 , publisher=
2006
-
[149]
ArXiv , year=
Binary Gaussian Copula Synthesis: A Novel Data Augmentation Technique to Advance ML-based Clinical Decision Support Systems for Early Prediction of Dialysis Among CKD Patients , author=. ArXiv , year=
-
[150]
ArXiv , year=
Differentially Private Release of High-Dimensional Datasets using the Gaussian Copula , author=. ArXiv , year=
-
[151]
PLoS ONE , year=
Measuring re-identification risk using a synthetic estimator to enable data sharing , author=. PLoS ONE , year=
-
[152]
The Synthetic Data Vault , year=
Patki, Neha and Wedge, Roy and Veeramachaneni, Kalyan , booktitle=. The Synthetic Data Vault , year=
-
[153]
Copulas Documentation , year =
-
[154]
1987 , issn =
Principal component analysis , journal =. 1987 , issn =. doi:https://doi.org/10.1016/0169-7439(87)80084-9 , url =
1987 doi
-
[155]
ArXiv , year=
Robust Bayesian Inference for Discrete Outcomes with the Total Variation Distance , author=. ArXiv , year=
-
[156]
arXiv preprint arXiv:2102.08037 , year=
Numerically more stable computation of the p-values for the two-sample Kolmogorov-Smirnov test , author=. arXiv preprint arXiv:2102.08037 , year=
-
[157]
CorrelationSimilarity , year =
-
[158]
ContingencySimilarity , year =
-
[159]
Machine learning , volume=
Random forests , author=. Machine learning , volume=. 2001 , publisher=
2001
-
[160]
Annals of statistics , pages=
Greedy function approximation: a gradient boosting machine , author=. Annals of statistics , pages=. 2001 , publisher=
2001
-
[161]
IEEE transactions on information theory , volume=
Nearest neighbor pattern classification , author=. IEEE transactions on information theory , volume=. 1967 , publisher=
1967
-
[162]
2017 , publisher=
Classification and regression trees , author=. 2017 , publisher=
2017
-
[163]
European conference on machine learning , pages=
Naive (Bayes) at forty: The independence assumption in information retrieval , author=. European conference on machine learning , pages=. 1998 , organization=
1998
-
[164]
Journal of the Royal Statistical Society Series B: Statistical Methodology , volume=
The regression analysis of binary sequences , author=. Journal of the Royal Statistical Society Series B: Statistical Methodology , volume=. 1958 , publisher=
1958
-
[165]
Scikit-learn Developers , title =. n.d. , url =
-
[166]
ArXiv , year=
A Comparative Study of Sampling Methods with Cross-Validation in the FedHome Framework , author =. ArXiv , year=
-
[167]
Information processing & management , volume=
A systematic analysis of performance measures for classification tasks , author=. Information processing & management , volume=. 2009 , publisher=
2009
-
[168]
Climate research , volume=
Advantages of the mean absolute error (MAE) over the root mean square error (RMSE) in assessing average model performance , author=. Climate research , volume=
-
[169]
Journal of Machine Learning Research , volume=
Quantifying uncertainty in random forests via confidence intervals and hypothesis tests , author=. Journal of Machine Learning Research , volume=
-
[170]
Journal of econometrics , volume=
An R-squared measure of goodness of fit for some common nonlinear regression models , author=. Journal of econometrics , volume=. 1997 , publisher=
1997
-
[171]
2024 32nd European Signal Processing Conference (EUSIPCO) , year=
An Improved Tabular Data Generator with VAE-GMM Integration , author=. 2024 32nd European Signal Processing Conference (EUSIPCO) , year=
2024
-
[172]
Sensors (Basel, Switzerland) , year=
Enhanced Conditional GAN for High-Quality Synthetic Tabular Data Generation in Mobile-Based Cardiovascular Healthcare , author=. Sensors (Basel, Switzerland) , year=
-
[173]
ArXiv , year=
Synthetic Tabular Data Generation for Class Imbalance and Fairness: A Comparative Study , author=. ArXiv , year=
-
[174]
Proceedings of the 14th Learning Analytics and Knowledge Conference , year=
Scaling While Privacy Preserving: A Comprehensive Synthetic Tabular Data Generation and Evaluation in Learning Analytics , author=. Proceedings of the 14th Learning Analytics and Knowledge Conference , year=
-
[175]
Artificial Intelligence Applications and Innovations , year=
An evaluation framework for synthetic data generation models , author=. Artificial Intelligence Applications and Innovations , year=
-
[176]
ArXiv , year=
STaSy: Score-based Tabular data Synthesis , author=. ArXiv , year=
-
[177]
Journal of Artificial Intelligence Research , volume=
SMOTE: Synthetic Minority Over-Sampling Technique , author=. Journal of Artificial Intelligence Research , volume=. 2002 , doi=
2002
-
[178]
Proceedings of the IEEE International Joint Conference on Neural Networks , pages=
ADASYN: Adaptive Synthetic Sampling Approach for Imbalanced Learning , author=. Proceedings of the IEEE International Joint Conference on Neural Networks , pages=. 2008 , organization=
2008
-
[179]
Proceedings of the VLDB Endowment , volume =
Park, Noseong and Mohammadi, Mahmoud and Gorde, Kshitij and Jajodia, Sushil and Park, Hongkyu and Kim, Youngmin , title =. Proceedings of the VLDB Endowment , volume =. 2018 , doi =
2018
-
[180]
arXiv preprint arXiv:1811.11264 , year=
Synthesizing tabular data using generative adversarial networks , author=. arXiv preprint arXiv:1811.11264 , year=
-
[181]
Machine learning for healthcare conference , pages=
Generating multi-label discrete patient records using generative adversarial networks , author=. Machine learning for healthcare conference , pages=. 2017 , organization=
2017
-
[182]
Advances in neural information processing systems , volume=
Veegan: Reducing mode collapse in gans using implicit variational learning , author=. Advances in neural information processing systems , volume=
-
[183]
IEEE Internet of Things Journal , year=
Deep-Learning-Aided Packet Routing in Aeronautical Ad Hoc Networks Relying on Real Flight Data: From Single-Objective to Near-Pareto Multiobjective Optimization , author=. IEEE Internet of Things Journal , year=
-
[184]
ArXiv , year=
An Exploratory Assessment of LLM's Potential Toward Flight Trajectory Reconstruction Analysis , author=. ArXiv , year=
-
[185]
Mathematics , VOLUME =
Figueira, Alvaro and Vaz, Bruno , TITLE =. Mathematics , VOLUME =. 2022 , NUMBER =
2022
-
[186]
ArXiv , year=
Discretized Bottleneck in VAE: Posterior-Collapse-Free Sequence-to-Sequence Learning , author=. ArXiv , year=
-
[187]
Computer Methods in Applied Mechanics and Engineering , year=
InVAErt networks: A data-driven framework for model synthesis and identifiability analysis , author=. Computer Methods in Applied Mechanics and Engineering , year=
-
[188]
2024 IEEE 40th International Conference on Data Engineering (ICDE) , year=
Meta-Optimized Joint Generative and Contrastive Learning for Sequential Recommendation , author=. 2024 IEEE 40th International Conference on Data Engineering (ICDE) , year=
2024
-
[189]
ArXiv , year=
Lagging Inference Networks and Posterior Collapse in Variational Autoencoders , author=. ArXiv , year=
-
[190]
arXiv preprint arXiv:2302.09976 , year=
Discouraging posterior collapse in hierarchical Variational Autoencoders using context , author=. arXiv preprint arXiv:2302.09976 , year=
-
[191]
2024 , keywords =
Sebastiaan Wijnands and Alexei Sharpanskykh and Karim Aly , title =. 2024 , keywords =. doi:10.5281/zenodo.14774664 , url =
2024 doi
-
[193]
Aerospace Science and Technology , volume =
Karim Aly and Alexei Sharpanskykh and Jacco Hoekstra , title =. Aerospace Science and Technology , volume =. 2026 , issn =. doi:10.1016/j.ast.2026.113224 , url =
2026
-
[194]
Synthetic Aircraft Trajectory Generation Using Time-Based VQ-VAE , year=
Murad, Abdulmajid and Ruocco, Massimiliano , booktitle=. Synthetic Aircraft Trajectory Generation Using Time-Based VQ-VAE , year=. doi:10.1109/ICNS65417.2025.10976929 , url=
2025
-
[195]
2019 , isbn =
Akiba, Takuya and Sano, Shotaro and Yanase, Toshihiko and Ohta, Takeru and Koyama, Masanori , title =. 2019 , isbn =. doi:10.1145/3292500.3330701 , booktitle =
2019
-
[196]
2006 , isbn =
Davis, Jesse and Goadrich, Mark , title =. 2006 , isbn =. doi:10.1145/1143844.1143874 , booktitle =
2006
-
[197]
BMC Genomics , year =
Chicco, Davide and Jurman, Giuseppe , title =. BMC Genomics , year =. doi:10.1186/s12864-019-6413-7 , url =
-
[198]
Algorithms for Hyper-Parameter Optimization , url =
Bergstra, James and Bardenet, R\'. Algorithms for Hyper-Parameter Optimization , url =. Advances in Neural Information Processing Systems , editor =
-
[199]
Cora and Nando de Freitas , title =
Eric Brochu and Vlad M. Cora and Nando de Freitas , title =. CoRR , volume =. 2010 , url =. 1012.2599 , timestamp =
2010 arXiv
-
[200]
, title =
Shyalika, Chathurangi and Wickramarachchi, Ruwan and Sheth, Amit P. , title =. 2024 , issue_date =. doi:10.1145/3699955 , journal =
2024 doi
-
[201]
arXiv preprint arXiv:2508.21201 , year =
Improving Aviation Safety Analysis: Automated HFACS Classification Using Reinforcement Learning with Group Relative Policy Optimization , author =. arXiv preprint arXiv:2508.21201 , year =
-
[202]
International Journal of Computing and Artificial Intelligence , year=
Data preparation for predictive analytics: Cleaning and balancing airline datasets for flight diversion prediction , author=. International Journal of Computing and Artificial Intelligence , year=
-
[203]
Cleveland , title =
William S. Cleveland , title =. Journal of the American Statistical Association , volume =. 1979 , publisher =. doi:10.1080/01621459.1979.10481038 , URL =
1979
-
[204]
GitHub repository , howpublished =
Aly, Karim and Sharpanskykh, Alexei , title =. GitHub repository , howpublished =. 2025 , publisher =
2025
-
[205]
Impacts of unplanned aircraft diversions on airport ground operations , journal =
Caterina Malandri and Luca Mantecchini and Filippo Paganelli and Maria. Impacts of unplanned aircraft diversions on airport ground operations , journal =. 2020 , note =. doi:https://doi.org/10.1016/j.trpro.2020.03.129 , url =
2020 doi
-
[206]
Prediction of ATFM impact for individual flights: A machine learning approach , journal =
Sergi Mas-Pujol and Luis Delgado , keywords =. Prediction of ATFM impact for individual flights: A machine learning approach , journal =. 2024 , issn =. doi:https://doi.org/10.1016/j.eswa.2024.124146 , url =
2024
-
[207]
arXiv preprint arXiv:2506.06380 , year =
Gu, Jingyi and Zhang, Xuan and Wang, Guiling , title =. arXiv preprint arXiv:2506.06380 , year =
-
[208]
Huster, Todd and Cohen, Jeremy E. J. and Lin, Zinan and Chan, Kevin and Kamhoua, Charles and Leslie, Nandi and Chiang, Cho-Yu Jason and Sekar, Vyas , title =. Proceedings of the 38th International Conference on Machine Learning (. 2021 , publisher =
2021
-
[209]
Proceedings of the 35th
Bhatia, Siddharth and Jain, Arjit and Hooi, Bryan , title =. Proceedings of the 35th. 2021 , publisher =
2021
-
[210]
Proceedings of the 40th International Conference on Machine Learning (
Kotelnikov, Akim and Baranchuk, Dmitry and Rubachev, Ivan and Babenko, Artem , title =. Proceedings of the 40th International Conference on Machine Learning (. 2023 , publisher =
2023
-
[211]
2001 , series =
Coles, Stuart , title =. 2001 , series =. doi:10.1007/978-1-4471-3675-0 , url =
2001 doi
-
[212]
Modelling Extremal Events for Insurance and Finance , publisher =
Embrechts, Paul and Kl. Modelling Extremal Events for Insurance and Finance , publisher =. 1997 , series =. doi:10.1007/978-3-642-33483-2 , url =
1997 doi
-
[213]
The Annals of Statistics , volume =
Pickands, James , title =. The Annals of Statistics , volume =. 1975 , publisher =. doi:10.1214/aos/1176343003 , url =
1975
-
[214]
Balkema, August A. and. Residual Life Time at Great Age , journal =. 1974 , publisher =. doi:10.1214/aop/1176996548 , url =
1974
-
[215]
2006 , volume =
Extreme Value Theory: An Introduction , publisher =. 2006 , volume =. doi:10.1007/0-387-34471-3 , url =
2006 doi
-
[216]
On the Block Maxima Method in Extreme Value Theory:
Ferreira, Ana and. On the Block Maxima Method in Extreme Value Theory:. The Annals of Statistics , volume =. 2015 , publisher =. doi:10.1214/14-AOS1280 , url =
2015 doi
-
[217]
, title =
Leadbetter, Malcolm R. , title =. Statistics & Probability Letters , volume =. 1991 , publisher =. doi:10.1016/0167-7152(91)90107-3 , url =
1991 doi
-
[218]
International Journal of Computer Mathematics , year =
Girard, St. International Journal of Computer Mathematics , year =. doi:10.1080/00207160.2025.2578391 , url =
2025
-
[219]
Journal of Machine Learning Research , volume =
Allouche, Micha. Journal of Machine Learning Research , volume =. 2022 , url =
2022
-
[220]
arXiv preprint arXiv:2306.10987 , year =
Lafon, Nicolas and Naveau, Philippe and Fablet, Ronan , title =. arXiv preprint arXiv:2306.10987 , year =
-
[221]
Modeling and Simulating Spatial Extremes by Combining Extreme Value Theory with Generative Adversarial Networks , journal =
Boulaguiem, Younes and Zscheischler, Jakob and Vignotto, Edoardo and. Modeling and Simulating Spatial Extremes by Combining Extreme Value Theory with Generative Adversarial Networks , journal =. 2022 , doi =
2022
-
[222]
arXiv preprint arXiv:2203.01664 , year =
Cont, Rama and Cucuringu, Mihai and Xu, Renyuan and Zhang, Chao , title =. arXiv preprint arXiv:2203.01664 , year =
-
[223]
arXiv preprint arXiv:2410.20808 , year =
Azimi, Azizjon and Boboeva, Bonu and Varshavskiy, Ilyas and Khalilbekov, Shuhrat and Nizamitdinov, Akhlitdin and Noyoftova, Najima and Shulgin, Sergey , title =. arXiv preprint arXiv:2410.20808 , year =
-
[224]
arXiv preprint arXiv:2411.15519 , year =
Chen, Ling , title =. arXiv preprint arXiv:2411.15519 , year =
-
[225]
arXiv preprint arXiv:2412.15222 , year =
Jiang, Mohan and Liang, Yaxin and Han, Siyuan and Ma, Kunyuan and Chen, Yuan and Xu, Zhen , title =. arXiv preprint arXiv:2412.15222 , year =
-
[226]
Stats , volume =
Karimanzira, Divas , title =. Stats , volume =. 2024 , doi =
2024
-
[227]
Applied Sciences , volume =
Yi, Derong and Yu, Mingfeng and Wang, Qiang and Tian, Hao and Wang, Leibao and Yan, Yongqian and Wu, Chenghuang and Hu, Bo and Li, Chunyan , title =. Applied Sciences , volume =. 2024 , doi =
2024
-
[228]
Proceedings of the 3rd International Conference on Intelligent Power and Systems (
Li, Yanchun and Li, Peng and Yang, Tianmeng and Chen, Zelong and Song, Xuan and Zhao, Yumin and Liu, Jicheng and Feng, Wei , title =. Proceedings of the 3rd International Conference on Intelligent Power and Systems (. 2023 , doi =
2023
-
[229]
Journal of Advances in Modeling Earth Systems , volume =
Bassetti, Seth and Hutchinson, Brian and Tebaldi, Claudia and Kravitz, Ben , title =. Journal of Advances in Modeling Earth Systems , volume =. 2024 , doi =
2024
- [230]
-
[231]
, title =
Tukey, John W. , title =. 1977 , publisher =
1977
-
[232]
and Hinton, Geoffrey E
Rumelhart, David E. and Hinton, Geoffrey E. and Williams, Ronald J. , title =. Nature , year =
-
[233]
Proceedings of the 2nd Workshop on Machine Learning for Sensory Data Analysis (MLSDA 2014) , year =
Sakurada, Mayu and Yairi, Takehisa , title =. Proceedings of the 2nd Workshop on Machine Learning for Sensory Data Analysis (MLSDA 2014) , year =
2014
-
[234]
and Salakhutdinov, Ruslan R
Hinton, Geoffrey E. and Salakhutdinov, Ruslan R. , title =. Science , year =
-
[235]
and Hart, Peter E
Cover, Thomas M. and Hart, Peter E. , title =. IEEE Transactions on Information Theory , volume =. 1967 , doi =
1967
-
[236]
Drucker, Harris and Burges, Christopher J. C. and Kaufman, Linda and Smola, Alex and Vapnik, Vladimir , title =. Advances in Neural Information Processing Systems 9 , pages =. 1997 , publisher =
1997
-
[237]
Proceedings of the 31st International Conference on Neural Information Processing Systems , series =
Ke, Guolin and Meng, Qi and Finley, Thomas and Wang, Taifeng and Chen, Wei and Ma, Weidong and Ye, Qiwei and Liu, Tie-Yan , title =. Proceedings of the 31st International Conference on Neural Information Processing Systems , series =. 2017 , publisher =
2017
-
[238]
Advances in Neural Information Processing Systems 31 , pages =
Prokhorenkova, Liudmila and Gusev, Gleb and Vorobev, Aleksandr and Dorogush, Anna Veronika and Gulin, Andrey , title =. Advances in Neural Information Processing Systems 31 , pages =. 2018 , publisher =
2018
-
[239]
Proceedings of the 22nd
Chen, Tianqi and Guestrin, Carlos , title =. Proceedings of the 22nd. 2016 , publisher =
2016
-
[240]
Frontiers in Big Data , volume =
Platzer, Michael and Reutterer, Thomas , title =. Frontiers in Big Data , volume =. 2021 , doi =
2021
-
[241]
2015 , number =
Cook, Andrew and Tanner, Graham , title =. 2015 , number =
2015
-
[242]
2025 , number =
Ruocco, Massimiliano and others , title =. 2025 , number =
2025
-
[243]
and Fuxin, Li , booktitle=
Khorram, Saeed and Jiang, Mingqi and Shahbazi, Mohamad and Danesh, Mohamad H. and Fuxin, Li , booktitle=. Taming the Tail in Class-Conditional. 2024 , pages=
2024
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.