Pith. sign in

REVIEW 4 major objections 8 minor 1 cited by

Variable Selection for Comparing High-dimensional Time-Series Data

T0 review · 4 major / 8 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read Time-Slicing Variable Selection finds which variables and time intervals differ between two multivariate time series when only one realization of each is available.

desk verdict Useful meta-algorithm for comparing single realizations of high-dimensional time series, honestly evaluated but with unaddressed autocorrelation in its p-values. read the letter →

arxiv 2412.06870 v1 pith:Z34ZONPB submitted 2024-12-09 stat.ME cs.LGstat.ML

classification stat.MEcs.LGstat.ML MSC 62H1562M1062G09
keywords multivariatetimeseriesvariableselectiontwo-sampletestingpermutationtestmaximummeandiscrepancysimulatorvalidationslicinghigh-dimensionaldata
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper tackles a practical problem: given one recorded trajectory from each of two multivariate time series, identify which variables and which time intervals differ, so that a simulator can be checked against data or against a learned emulator without running many expensive simulations. It proposes Time-Slicing Variable Selection, a meta-algorithm that cuts both series into aligned subintervals, carries out a two-sample variable-selection task inside each subinterval, and then performs a permutation test on the selected variables using a held-out part of that subinterval. The output is, for every time window, a set of variables and a p-value that together say where and when the two series are significantly different. The paper's experiments support the usefulness of the approach for validating a neural fluid emulator and for locating the traffic effects of closing roads.

What carries the argument

The object that carries the argument is the train/test split inside each window: the training columns are used for variable selection, and the test columns are used for the permutation test, so the reported p-value is computed on variables chosen without access to the test data. The wrapper is deliberately generic; the paper's implementations use sparse maximum-mean-discrepancy weights and marginal Wasserstein distances as selectors, and sliced Wasserstein distance as the test statistic. Time-Slicing Variable Selection is the procedure of turning each pair of $D\times T$ series into $B$ pairs of $D\times m_b$ data matrices, inside which time order is discarded and the observations are treated as independent samples.

What would settle it

Run the method on two long autocorrelated time series that are identical everywhere except for a brief change in one variable, slicing coarsely enough that the changed window is mixed with unchanged observations; if p-values become small on slices far from the change at a rate far above the nominal level, the independence approximation is falsified.

Watch

Extended reading notes

Core claim

The central claim is that variable selection for two multivariate time series can be reduced to repeated two-sample variable selection on time-localized submatrices, making it unnecessary to observe many independent trajectories of each series. The paper proposes to ignore the order of time points within each subinterval, select variables on a training split, and use a permutation test on the test split of the selected variables. In synthetic data with a known planted difference, the approach recovers the correct variable on the subintervals that overlap the change, and it fails in a constructed case where time-slicing makes the marginal distributions coincide. In applications, it flags discrepancies between a deep-network fluid emulator and a particle-based simulator and tracks the spatial pattern of traffic rerouting after road closures.

Load-bearing premise

The assumption that after randomizing time order the observations inside each subinterval behave like independent draws is the load-bearing premise; if consecutive observations are autocorrelated, the permutation p-values are only approximate and the selected variable sets carry uncontrolled uncertainty.

Editorial extensions

If this is right

  • A simulator run can be checked against a single observed run, reporting which variables and which time windows carry the discrepancy.
  • An emulator can be validated against its simulator, with failures localized in both space and time rather than summarized by one global score.
  • Changing a simulator parameter can be compared at the output level, showing when the effect first appears and which sensors or road segments react.
  • Because the selector is a plug-in component, the same time-slicing wrapper works with other two-sample variable-selection algorithms.
  • The number of slices controls the resolution-sample-size trade-off, so the user can tune the slicing to the expected duration of differences.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper, a natural correction for autocorrelated outputs would replace the within-window permutation test with a block-permutation version; the paper does not develop this.
  • The same time-slicing wrapper could be paired with frequency-domain or spectral two-sample statistics to detect differences in dynamics that marginal distributions miss, a direction the paper leaves open.
  • Seen as a diagnostic, the per-window selected variables form a time-varying attention map that could point a simulator developer to the mechanism behind a discrepancy, extending the paper's validation framing.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 8 minor

Summary. The manuscript proposes Time-Slicing Variable Selection, a meta-algorithm for comparing a single pair of multivariate time series. The method splits each series into B subintervals, ignores time order within each subinterval, applies an existing two-sample variable selection method on a training portion, and performs a permutation test on the held-out test portion using the selected variables. Synthetic experiments with two settings, a fluid-emulator validation, and a traffic simulation comparison are presented. The central claim is that the approach identifies subintervals and variables where the two series differ significantly using only one realization per series.

Significance. If valid, the approach would be practically useful for simulator validation, especially in settings where multiple runs are too expensive. The train/test split within each subinterval is a sensible way to avoid selection bias in the final permutation test, and the paper is transparent about the independence assumption. However, the statistical validity of the reported p-values under temporal dependence is not established, and the empirical evidence is currently too limited to support the strength of the claimed conclusions. The two real-data demonstrations are illustrative but lack ground truth, so they cannot validate the method by themselves.

major comments (4)
  1. [Section 2.3; Algorithm 1 lines 3-6] The method explicitly ignores time order within each subinterval, stating in Section 2.3 that "we essentially treat data vectors in X_b ... as independent," which makes the permutation test p-values exact only when observations are exchangeable under the null. In the fluid and traffic applications, consecutive time steps are strongly autocorrelated, so this assumption is violated. The synthetic experiments in Section 4 (Eqs. 4.1-4.2) use iid Gaussian noise and therefore never test the autocorrelated regime. The reported p-values in Sections 5-6 are thus heuristic rather than statistically calibrated. Please add experiments with autocorrelated noise (e.g., AR(1)) and report type I error rates, or use dependence-robust resampling (e.g., block bootstrap) and justify the validity of the resulting p-values.
  2. [Section 4.3] The synthetic validation uses only three independent realizations per setting. With n=3, the means and standard deviations shown in Figures 5-6 give no reliable estimate of p-value calibration or power. There is also no null scenario where X and Y are generated from the same process, so the observation that "producing large p-values outside intervals 3,4 and 5 is correct" is not substantiated by a false-positive rate. Please increase the number of replications (at least tens), include a null case, and report the empirical type I error at the nominal 0.05 level.
  3. [Section 4.2] The MsKernel-Gaussian and MsKernel-IMQ baselines are given the true number of ground-truth variables (1) as input, which is an oracle advantage not available to the other methods. This makes the comparison in Figures 5-6 unfair. Please report their performance with a non-oracle selection rule (e.g., choosing the number of variables by a data-driven rule) or clearly state the oracle setting and its implications for the conclusions.
  4. [Sections 4 and 5; Figure 9] The paper does not address multiple testing across subintervals: with B=10, the probability of at least one small p-value under the global null is much larger than 0.05. Since the method's output includes p_b for each b, a multiple-testing correction (e.g., Benjamini-Hochberg) or an explicit exploratory interpretation is needed to support claims of significant differences on particular subintervals.
minor comments (8)
  1. [Section 4.3] Typo: "identiy" should be "identify".
  2. [Section 5.1] Typo: "Wassertstein" should be "Wasserstein".
  3. [Section 2.3] Typo: "top tow figures" should be "top two figures".
  4. [Eq. (4.1)] The phrase "independence zero-mean Gaussian noises" should be "independent zero-mean Gaussian noises".
  5. [Section 2.2, Algorithm 1 line 6] The omitted variable name makes the statement incomplete: "the marginal distributions of X_b^(te) and Y_b^(te) on are the same" should specify "on Ŝ_b".
  6. [Figures 5 and 6 captions] The caption text contains "recallsores", which appears to be a typo for "recall scores".
  7. [Throughout (e.g., Sections 3.2, 4.2)] The naming of the marginal-MMD method is inconsistent: "Mskernel" and "MsKernel" both appear; please standardize.
  8. [Section 7] The conclusion lists the subinterval-length trade-off as a limitation but does not mention the independence/exchangeability assumption, which is at least as important; please add it to the limitations discussion.

Circularity Check

0 steps flagged · score 2.0 of 10

No circular derivation: p-values come from held-out test slices and synthetic evaluation is anchored to external ground truth; self-cited MMD modules add an inheritance burden but not a circular step.

full rationale

The central claim is a meta-algorithm, not a derived first-principles identity. Algorithm 1 splits each series into subintervals, randomly partitions each subinterval into training and test portions (lines 3-4), performs variable selection on training only (line 5), and computes the permutation-test p-value on the held-out test portion restricted to the selected variables (line 6). The test portion was not used for selection, so the p-value is not equal by construction to the selection criterion; under the paper's explicit within-slice exchangeability assumption it is a standard conditional permutation test. The synthetic experiments (Section 4, Eqs. 4.1-4.2) use known ground-truth variables and intervals, so the evaluation is externally anchored rather than defined by the method's output. The main inherited element is the MMD-based variable-selection machinery (ARD-weight optimisation, thresholding, MMD-Selection, MMD-CV-AGG), cited from Mitsuzawa et al. [18], which shares authors with this paper; no independent implementation or formal verification is provided. This is a self-citation and an inheritance burden, but it is not load-bearing circularity: the framework does not invoke that work to prove its own validity, and its conclusions are tested against synthetic ground truth and two external simulators. The limitations stated in Sections 2.3, 4, and 7 (within-slice independence, trade-off in subinterval length, and the p-value-1.0 convention when no variable is selected) are substantive assumptions and implementation conventions; they weaken the statistical guarantees under autocorrelation but do not reduce any reported prediction to the method's inputs. Overall, no circular step is exhibited; the score reflects the mild self-citation burden.

Assumptions & free parameters 5 free parameters · 3 assumptions · 0 invented entities

The method introduces no new physical or mathematical entities. Its central claim rests on a user-chosen slicing hyperparameter, an exchangeability assumption for time points, and the reliability of imported variable selection algorithms.

free parameters (5)
  • Number of subintervals B = 10 or 2 in synthetic experiments; 6 in fluid; 8 in traffic
    User-chosen hyperparameter controlling the stationarity versus sample-size trade-off; no data-driven selection rule is provided.
  • Train-test ratio rho_train = 0.8
    Fixed by the user; affects the variance of variable selection and the power of the permutation test.
  • MMD regularization parameter lambda = Optimized by Optuna in ranges such as [1e-6, 2] and aggregated in MMD-CV-AGG
    Controls sparsity of ARD weights and is tuned on validation data inside the experiments, so it is a fitted quantity.
  • Mskernel number of selected variables = Set to 1, the true number of ground-truth variables, in synthetic experiments
    Requires prior knowledge of the answer; the paper discloses this advantage but it biases the comparison in favor of Mskernel.
  • Kernel bandwidths gamma_d = Median or mean heuristic per dimension
    Chosen by a standard heuristic rather than fit to the target result, but still a hand-selected modeling choice.
assumptions (3)
  • domain assumption Observations within each subinterval are i.i.d. or exchangeable after randomization
    Section 2.3 says time order is neglected; permutation test validity relies on exchangeability of the test set, which is unlikely for autocorrelated simulation outputs.
  • domain assumption The two-sample variable selection methods import reliable power from prior work
    Section 3 imports MMD-based and marginal-distance methods without proving their variable-selection guarantees in this paper; the evidence is inherited from Mitsuzawa et al. [18].
  • domain assumption Grid counts of particle positions or road vehicle counts are informative representations
    Sections 5.1 and 6.1 assume that aggregating coordinates into counts preserves the discrepancies relevant for validation.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Variable Selection for Comparing High-dimensional Time-Series Data." pith.science (2026). https://pith.science/paper/Z34ZONPB

@misc{pith2026241206870,
  author       = {Pith},
  title        = {Pith review of: Variable Selection for Comparing High-dimensional Time-Series Data},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/Z34ZONPB}},
  note         = {Machine review of arXiv:2412.06870}
}
read the original abstract

Given a pair of multivariate time-series data of the same length and dimensions, an approach is proposed to select variables and time intervals where the two series are significantly different. In applications where one time series is an output from a computationally expensive simulator, the approach may be used for validating the simulator against real data, for comparing the outputs of two simulators, and for validating a machine learning-based emulator against the simulator. With the proposed approach, the entire time interval is split into multiple subintervals, and on each subinterval, the two sample sets are compared to select variables that distinguish their distributions and a two-sample test is performed. The validity and limitations of the proposed approach are investigated in synthetic data experiments. Its usefulness is demonstrated in an application with a particle-based fluid simulator, where a deep neural network model is compared against the simulator, and in an application with a microscopic traffic simulator, where the effects of changing the simulator's parameters on traffic flows are analysed.

Figures

Figures reproduced from arXiv: 2412.06870 by the authors.

Figure 1
Figure 1. Illustration of the proposed approach to variable selection for two multivariate time series. [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. An example of time-splitting applied to two time-series data [PITH_FULL_IMAGE:figures/full_fig_p007_2.png] view at source ↗
Figure 3
Figure 3. Illustration of two time-series data 𝑋 ∈ R 𝐷×𝑇 and 𝑌 ∈ R 𝐷×𝑇 in Eq. (4.1). Each subfigure shows the trajectories of 𝑋 and 𝑌 in each variable 𝑑 = 1, . . . , 𝐷, i.e., 𝑥1,𝑑, . . . , 𝑥𝑇,𝑑 and 𝑦1,𝑑, . . . , 𝑦𝑇,𝑑. The variable 𝑑 = 4 from 𝑡 = 251 to 𝑡 = 500 is where 𝑋 and 𝑌 differ. Setting 2. We generate 𝑋 = (𝒙1, . . . , 𝒙𝑇) ∈ R 𝐷×𝑇 and 𝑌 = (𝒚1, . . . , 𝒚𝑇) ∈ R 𝐷×𝑇 as 𝑥𝑡,𝑑 = 𝑡/𝑇 + 𝜖𝑡,𝑑 for 𝑑 = 1, . . . , 𝐷 and 𝑡 = 1, . . .… view at source ↗
Figures from the paper (10 more)
Figure 4
Figure 4. Figure 4: Illustration of two time-series data 𝑋 ∈ R 𝐷×𝑇 and 𝑌 ∈ R 𝐷×𝑇 in Eq. (4.2). Each subfigure shows the trajectories of 𝑋 and 𝑌 in each variable 𝑑 = 1, . . . , 𝐷, i.e., 𝑥1,𝑑, . . . , 𝑥𝑇,𝑑 and 𝑦1,𝑑, . . . , 𝑦𝑇,𝑑. The variable 𝑑 = 4 from 𝑡 = 251 to 𝑡 = 500 is where 𝑋 and 𝑌 d…
Figure 5
Figure 5. Figure 5: Results of the experiments in Section 4 with 𝐵 = 10 in Setting 1 (left column) and Setting 2 (right column). Top: The p-values over the 𝐵 = 10 subintervals obtained by each method, where each line and the shaded area represent the means and standard deviations computed…
Figure 6
Figure 6. Figure 6: Results of the experiments in Section 4 with 𝐵 = 2. In each figure, the left and right subfigures are the results for Settings 1 and 2, respectively. The top figure shows the p-values, the bottom left the precision scores, and the bottom right the recall scores. For de…
Figure 7
Figure 7. Figure 7: Snapshots of water particle distributions of the [PITH_FULL_IMAGE:figures/full_fig_p016_7.png]
Figure 8
Figure 8. Figure 8: Selected results from the experiments in Section [PITH_FULL_IMAGE:figures/full_fig_p018_8.png]
Figure 9
Figure 9. Figure 9: P-values obtained with Algorithm 1 on each subinterval with the MMD-Selection, MMD-CV-AGG and Wasserstein for the experiments in Section 5. “Time-bucket index” in the hori￾zontal axis indicates the six subintervals. The red dashed line indicates the value 0.05. The pro…
Figure 10
Figure 10. Figure 10: The simulated area of the MoST scenario inside and around Monaco in Section 6. The three red “X" marks indicate the blocked locations in the A8 highway (top), D2564 (middle) and D51 (bottom), in the modified scenario. The blue circles indicate ramps to the A8 highway.…
Figure 11
Figure 11. Figure 11: Road segments selected by MMD-CV-AGG on the 1st (a), 3rd (b) and 5th (c) subintervals in the experiments of Section 6. 6.2 Results Selected Road Segments. To save space, we only describe road segments selected by MMD-CV-AGG, which performed well in the previous experi…
Figure 12
Figure 12. Figure 12: Time-series 𝑥1,𝑑, . . . , 𝑥𝑇,𝐷 from the original scenario (blue) and 𝑦1,𝑑, . . . , 𝑦𝑇,𝐷 from the modified scenario (orange) for two specific road segments 𝑑 in Section 6. The left figure is where the road segment 𝑑 is at the centre of commune La Turbie (road id 153451…
Figure 13
Figure 13. Figure 13: P-values (left) and the number of selected variables (right) of the three variable selection [PITH_FULL_IMAGE:figures/full_fig_p023_13.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Post Hoc Inference for Component Attribution in Multivariate Change-Point Detection

    stat.ME 2026-07 conditional novelty 6.0 of 10

    After a multivariate change-point is detected, a grid-based or sample-splitting two-sample test determines whether a pre-specified block of coordinates changed, with Type I error bounded by α0+α1.

Reference graph

Works this paper leans on

36 extracted references · 27 canonical work pages · cited by 1 Pith paper

  1. [1]

    Optuna: A next-generation hyperparameter optimization framework

    Takuya Akiba, Shotaro Sano, Toshihiko Yanase, Takeru Ohta, and Masanori Koyama. Optuna: A next-generation hyperparameter optimization framework. InThe 25th ACM SIGKDD Inter- national Conference on Knowledge Discovery & Data Mining, pages 2623–2631, 2019. doi: 10.1145/3292500.3330701

  2. [2]

    SPlisHSPlasH Library

    Jan Bender et al. SPlisHSPlasH Library. N.A. URL https://github.com/ InteractiveComputerGraphics/SPlisHSPlasH

  3. [3]

    Sliced and Radon Wasser- steinBarycentersofMeasures

    Nicolas Bonneel, Julien Rabin, Gabriel Peyré, and Hanspeter Pfister. Sliced and Radon Wasser- steinBarycentersofMeasures. JournalofMathematicalImagingandVision ,1(51):22–45,2015. doi: 10.1007/s10851-014-0506-3. URL https://hal.science/hal-00881872

  4. [4]

    Sensitivity analysis when model outputs are functions.Reliability Engineering & System Safety, 91(10-11):1468–1472, 2006

    Katherine Campbell, Michael D McKay, and Brian J Williams. Sensitivity analysis when model outputs are functions.Reliability Engineering & System Safety, 91(10-11):1468–1472, 2006

  5. [5]

    Representation learning for a generalized, quantitative comparison of complex model outputs

    Colin G Cess and Stacey D Finley. Representation learning for a generalized, quantitative comparison of complex model outputs.arXiv preprint arXiv:2208.06530, 2022

  6. [6]

    Lara Codeca and Jérôme Härri. Monaco SUMO Traffic (MoST) Scenario: A 3D Mobility ScenarioforCooperativeITS.In SUMO2018-SimulatingAutonomousandIntermodalTransport Systems,volume2of EPiCSeriesinEngineering ,pages43–55.EasyChair,2018. doi: 10.29007/ 1zt5. URL https://easychair.org/publications/paper/x3nd

  7. [7]

    CRC Press, 1994

    Bradley Efron and RJ Tibshirani.An Introduction to the Bootstrap. CRC Press, 1994

  8. [8]

    Trafficgen: Learning to generate diverse and realistic traffic scenarios

    Lan Feng, Quanyi Li, Zhenghao Peng, Shuhan Tan, and Bolei Zhou. Trafficgen: Learning to generate diverse and realistic traffic scenarios. In2023 IEEE International Conference on Robotics and Automation (ICRA), pages 3567–3575. IEEE, 2023

Show all 36 references
  1. [9]

    Large sample analysis of the median heuristic.arXiv preprint arXiv:1707.07269, 2018

    Damien Garreau, Wittawat Jitkrittum, and Motonobu Kanagawa. Large sample analysis of the median heuristic.arXiv preprint arXiv:1707.07269, 2018

  2. [10]

    Borgwardt, Malte J

    Arthur Gretton, Karsten M. Borgwardt, Malte J. Rasch, Bernhard Schölkopf, and Alexander Smola. A kernel two-sample test. Journal of Machine Learning Research, 13(25):723–773,

  3. [11]

    Un- supervised change analysis using supervised learning

    Shohei Hido, Tsuyoshi Idé, Hisashi Kashima, Harunobu Kubo, and Hirofumi Matsuzawa. Un- supervised change analysis using supervised learning. InProceedings of the 12th Pacific-Asia ConferenceonAdvancesinKnowledgeDiscoveryandDataMining ,PAKDD’08,pages148–159, 2008

  4. [12]

    URLhttp://arxiv.org/abs/1412.6980

    DiederikP.KingmaandJimmyBa.Adam: Amethodforstochasticoptimization.In International Conference on Learning Representations, 2015. URLhttp://arxiv.org/abs/1412.6980

  5. [13]

    Mcgraw-hill New York, 5th edition, 2014

    Averill M Law.Simulation Modeling and Analysis. Mcgraw-hill New York, 5th edition, 2014

  6. [14]

    Morepowerfulselectivekerneltestsforfeatureselection

    Jen Ning Lim, Makoto Yamada, Wittawat Jitkrittum, Yoshikazu Terada, Shigeyuki Matsui, and HidetoshiShimodaira. Morepowerfulselectivekerneltestsforfeatureselection. In Proceedings 24 of the Twenty Third International Conference on Artificial Intelligence and Statistics, volume ...

  7. [15]

    Microscopictrafficsimulationusingsumo

    Pablo Alvarez Lopez, Michael Behrisch, Laura Bieker-Walz, Jakob Erdmann, Yun-Pang Flöt- teröd, Robert Hilbrich, Leonhard Lücken, Johannes Rummel, Peter Wagner, and Evamarie Wießner. Microscopictrafficsimulationusingsumo. In The21stIEEEInternationalConference on Intelligent Tra...

  8. [16]

    Revisiting classifier two-sample tests

    David Lopez-Paz and Maxime Oquab. Revisiting classifier two-sample tests. InInternational Conference on Learning Representations, 2017

  9. [17]

    Digital twin- driven smart manufacturing: Connotation, reference model, applications and research issues

    Yuqian Lu, Chao Liu, Kevin I-Kai Wang, Huiyue Huang, and Xun Xu. Digital twin- driven smart manufacturing: Connotation, reference model, applications and research issues. Robotics and Computer-Integrated Manufacturing, 61:101837, 2020. ISSN 0736-5845. doi: 10.1016/j.rcim.2019....

  10. [18]

    arXiv preprint arXiv:2311.01537, 2023

    Kensuke Mitsuzawa, Motonobu Kanagawa, Stefano Bortoli, Margherita Grossi, and Paolo Pa- potti.Variableselectioninmaximummeandiscrepancyforinterpretabledistributioncomparison. arXiv preprint arXiv:2311.01537, 2023

  11. [19]

    Principal differences analysis: Interpretable characteriza- tionofdifferencesbetweendistributions

    Jonas W Müller and Tommi Jaakkola. Principal differences analysis: Interpretable characteriza- tionofdifferencesbetweendistributions. NeuralInformationProcessingSystems(NeurIPS) ,28, 2015

  12. [20]

    PyTorch: an imperative style, high-performance deep learning library

    Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, Alban Desmaison, Andreas Köpf, Edward Yang, Zach DeVito, Martin Raison, Alykhan Tejani, Sasank Chilamkurthy, Benoit Steiner, Lu Fan...

  13. [21]

    Guaranteed con- servation of momentum for learning particle-based fluid dynamics

    Lukas Prantl, Benjamin Ummenhofer, Vladlen Koltun, and Nils Thuerey. Guaranteed con- servation of momentum for learning particle-based fluid dynamics. InConference on Neural Information Processing Systems, 2022

  14. [22]

    Construction with digital twin information systems.Data-Centric Engineering, 1:e14, 2020

    Rafael Sacks, Ioannis Brilakis, Ergo Pikas, Haiyan Sally Xie, and Mark Girolami. Construction with digital twin information systems.Data-Centric Engineering, 1:e14, 2020. doi: 10.1017/ dce.2020.16

  15. [23]

    Battaglia

    AlvaroSanchez-Gonzalez,JonathanGodwin,TobiasPfaff,RexYing,JureLeskovec,andPeterW. Battaglia. Learningtosimulatecomplexphysicswithgraphnetworks. In Proceedingsofthe37th International Conference on Machine Learning, ICML’20. JMLR.org, 2020

  16. [24]

    B. K. Sriperumbudur, A. Gretton, K. Fukumizu, B. Schölkopf, and G. R.G. Lanckriet. Hilbert spaceembeddingsandmetricsonprobabilitymeasures. JournalofMachineLearningResearch , 11:1517–1561, 2010

  17. [25]

    Sutherland, Hsiao-Yu Tung, Heiko Strathmann, Soumyajit De, Aaditya Ramdas, Alex Smola, and Arthur Gretton

    Danica J. Sutherland, Hsiao-Yu Tung, Heiko Strathmann, Soumyajit De, Aaditya Ramdas, Alex Smola, and Arthur Gretton. Generative models and model criticism via optimized maximum 25 mean discrepancy. In International Conference on Learning Representations, 2017. URL https://open...

  18. [26]

    A method for comparing multivariate time series with different dimensions.PloS One, 8(2):e54201, 2013

    Avraam Tapinos and Pedro Mendes. A method for comparing multivariate time series with different dimensions.PloS One, 8(2):e54201, 2013

  19. [27]

    Regression shrinkage and selection via the lasso

    Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal Statistical Society. Series B (Methodological), 58(1):267–288, 1996. ISSN 00359246. URL http://www.jstor.org/stable/2346178

  20. [28]

    Lagrangian fluid sim- ulationwithcontinuousconvolutions

    Benjamin Ummenhofer, Lukas Prantl, Nils Thuerey, and Vladlen Koltun. Lagrangian fluid sim- ulationwithcontinuousconvolutions. In InternationalConferenceonLearningRepresentations , 2020

  21. [29]

    Springer, 2009

    Cédric Villani.Optimal Transport: Old and New. Springer, 2009

  22. [30]

    Oliphant, Matt Haberland, Tyler Reddy, David Cour- napeau, Evgeni Burovski, Pearu Peterson, Warren Weckesser, Jonathan Bright, Stéfan J

    Pauli Virtanen, Ralf Gommers, Travis E. Oliphant, Matt Haberland, Tyler Reddy, David Cour- napeau, Evgeni Burovski, Pearu Peterson, Warren Weckesser, Jonathan Bright, Stéfan J. van der Walt,MatthewBrett,JoshuaWilson,K.JarrodMillman,NikolayMayorov,AndrewR.J.Nelson, Eric Jones, ...

  23. [31]

    Variable selection for kernel two-sample tests.arXiv preprint arXiv:2302.07415, 2023

    Jie Wang, Santanu S Dey, and Yao Xie. Variable selection for kernel two-sample tests.arXiv preprint arXiv:2302.07415, 2023

  24. [32]

    Akerneltwo-sampletestforfunctionaldata

    GeorgeWynneandAndrewB.Duncan. Akerneltwo-sampletestforfunctionaldata. Journalof Machine Learning Research, 23(1), jan 2022. ISSN 1532-4435

  25. [33]

    Post selection inference with incomplete maximum mean discrepancy estimator

    Makoto Yamada, Denny Wu, Yao-Hung Hubert Tsai, Hirofumi Ohta, Ruslan Salakhutdinov, Ichiro Takeuchi, and Kenji Fukumizu. Post selection inference with incomplete maximum mean discrepancy estimator. InInternational Conference on Learning Representations, 2019. 26 A Details of M...

  26. [35]

    It stops the optimisation when the objective value does not change significantly for the past100 epochs

    Convergence-basedstopper: Thisstoppingcriterionstartsmonitoringtheobjectivevalue(3.3) after the initial 200 epochs. It stops the optimisation when the objective value does not change significantly for the past100 epochs. More specifically, the optimisation is stopped if the mi...

  27. [36]

    training

    Variable-selection-based stopper:After the initial 400 epochs, the stopper starts performing variable selection every 10 epochs (by the thresholding algorithm applied to the ARD weights). It stops the optimisation if the selected variables have not changed for the past100 epoc...

  28. [2012]

    URL http://jmlr.org/papers/v13/gretton12a.html

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.