REVIEW 5 major objections 6 minor 1 cited by
Change-Aware Self-Adaptive AI-Aided Kalman Filters With Neural Change Point Detection
T0 review · 5 major / 6 minor · reviewed 2026-08-02 · deepseek-v4-flash
Pith's one-line read A learned reliability monitor on a Kalman filter's prediction residual can gate label-free online adaptation, letting AI-aided filters track abrupt and gradual model changes while approaching full-information accuracy.
desk verdict A sensible online-adaptation wrapper for KalmanNet that mostly delivers, but the evaluation omits the closest competitors and leaves the innovation-proxy assumption untested. 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
CPDNet is the central mechanism: a recurrent network that consumes windowed scalar features z_t = tanh(γ(σ(‖Δy_t‖) − 0.5)) derived from the innovation norm. Its output p̂_φ feeds a gated learning rate η_t = ε·max(p̂_φ − thresh, 0), which switches on a single gradient step on the unsupervised, ℓ2-regularized loss L_t^unsup(θ) = ‖Δy_t(θ)‖² + ρ‖θ‖². Together these pieces convert an internal filter signal into a closed-loop, label-free adaptation rule that decides when to update, how strongly to update, and when to leave the pretrained filter alone.
What would settle it
Construct a model shift that reduces the observation gain (so the innovation magnitude shrinks even though state uncertainty grows) and check whether CPDNet stays silent while MSE degrades; alternatively, compare CASA-KalmanNet against an oracle adaptation triggered by true state error — if the oracle is measurably better across Q/R shifts, the innovation-proxy assumption is falsified.
Extended reading notes
Core claim
The central claim is that the interpretable internal features of KalmanNet — especially the innovation process Δy_t, the gap between observed measurement and the filter's predicted measurement — carry enough information to drive both detection of and recovery from distribution shift. CPDNet, a lightweight recurrent network, maps windowed normalized innovation magnitudes to a soft reliability-degradation score; that score is converted into a time-varying learning rate that gates and scales a single truncated-backpropagation gradient step on an unsupervised innovation-loss objective. This loop lets CASA-KalmanNet adapt to abrupt and gradual changes in noise statistics and model parameters with
Load-bearing premise
The load-bearing premise is that the size of the filter's prediction residual (the gap between observed and predicted measurements) tracks how badly the filter is failing, and that shrinking that residual online improves state estimation; if a regime change makes the residual stay small while state errors grow, the whole trigger-and-update loop chases the wrong signal.
Editorial extensions
If this is right
- AI-aided KalmanNet-style filters can keep operating through abrupt and gradual noise or model changes without any ground-truth state labels from the new regime.
- Because adaptation is gated and scaled by the reliability score, update counts drop sharply — 51.8% fewer updates than continuous unsupervised adaptation in the real-robot experiment — while accuracy still improves.
- Under full parameter knowledge, CASA-KalmanNet approaches the MSE of the optimal Kalman and EM-Kalman filters on linear systems and beats the EKF, UKF, KalmanNet, and particle filter baselines on the nonlinear Lorenz system under model mismatch.
- The mechanism extends beyond noise-covariance shifts to rotations of the state-transition and observation matrices, although the paper notes that major structural changes would require an additional system-identification layer.
- On a controlled robot-trajectory test with a 500× unannounced jump in observation noise, CASA-KalmanNet achieves the best MSE among learned filters while making far fewer online updates.
Reading between the lines
- The same gating idea could transfer to other neural filters only if they expose a comparable internal residual; the paper explicitly leaves that redesign open, so a natural extension is testing CPDNet-style monitoring on non-Kalman recursive estimators.
- The paper's own stated limits suggest stress tests rather than settled results: very slow drift can delay or miss the CPDNet trigger, and repeated changes over long horizons may accumulate update error — both are worth probing empirically.
- Because the unsupervised loss is the innovation norm, the method is most natural where observations remain informative; in extremely low-SNR regimes the update signal may become noise-dominated, a boundary the paper's −10 dB experiments only begin to explore.
- A direct extension the paper lists as future work — adapting the detection window δ and the number of gradient steps to the detected severity — could reduce latency in fast-changing environments and deserves a dedicated study.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes CASA-KalmanNet, an online test-time adaptation framework for KalmanNet. It adds CPDNet, a neural module that takes a window of nonlinear scalar features of the innovation norm (Eq. 10) and outputs a reliability-degradation score. This score gates and scales the learning rate (Eq. 15) for an online update of KalmanNet parameters using an unsupervised innovation-norm loss (Eq. 16). CPDNet is trained offline against the reference KalmanNet's state error (Eq. 13). Experiments cover linear Gaussian models with abrupt and gradual changes in Q, R, F, H; a Lorenz attractor nonlinear model; and an NCLT robot trajectory, comparing against KF/EM-KF/EKF/UKF/PF and supervised/unsupervised KalmanNet. The paper claims consistent improvement over learning-based baselines and near-optimal performance relative to full-information classical filters.
Significance. If the claims hold, the framework is a valuable step toward label-free online adaptation of AI-aided Kalman filters: it monitors filter reliability rather than the raw data distribution, updates only when needed, and reduces update count substantially (Table VII). Strengths include a clear architecture, a reproducible code repository, a real-data experiment, and honest statements of limitations in Sections III-B1, IV-C, and V-C. However, the central proxy assumption—that the innovation norm is both a valid trigger and a valid adaptation objective—is not empirically isolated, and the experimental protocol lacks error bars and the most relevant adaptive baselines. These gaps leave the principal claims stronger than the evidence.
major comments (5)
- [Section IV-A2, Eq. (16)] The unsupervised loss L_t^unsup(θ)=||Δy_t(θ)||^2+ρ||θ||^2 is the sole adaptation signal, but the paper never establishes that minimizing the innovation norm improves state estimation. In the linear Gaussian model, Δy_t = H(x_t - x̂_{t|t-1}) + v_t, so under large observation noise R a large innovation is dominated by v_t, and minimizing ||Δy_t||^2 can pull the prior estimate toward the noisy observation, increasing corrected state error. Section IV-A1 explicitly labels η_t a 'heuristic adaptation magnitude,' but no experiment isolates the proxy assumption. Please add an ablation that varies R (e.g., compares Eq. (16) against a normalized or residual-weighted loss) or otherwise demonstrates that the update direction is not harmful in noise-dominated regimes; otherwise the central adaptation mechanism is unvalidated.
- [Section III-C2/Eq. (13) and Section IV-A2/Eq. (17)] CPDNet is trained offline against the error of the fixed reference KalmanNet θ (Eq. 13), but at deployment it gates updates for the continually adapted network. After parameters change, the mapping from innovations to actual state error is no longer the one CPDNet learned; the paper does not recalibrate or re-evaluate CPDNet on the adapted network. This could lead to miscalibrated gating after the first update. Please report CPDNet's detection accuracy against the adapted network's true error over time, or compare against an oracle-gated version, to show the gating remains valid.
- [Section V-B, Tables II and III] The linear-model tables report only point MSE values, with no error bars, number of seeds, or significance tests. Since change points are randomly inserted (Section V-B1), the reported differences may be within run-to-run variability. Additionally, the closest adaptive baselines discussed in the Introduction—Adaptive KalmanNet [28], EM-KalmanNet [29], and MAML-KalmanNet [30]—are never benchmarked. The abstract's claim of 'consistently outperforming existing learning-based filters' is therefore not yet fully supported. Please add repeated-seed statistics and at least one of these adaptive baselines.
- [Section V-A2/Table I and Section II-B] CPDNet is trained and tested on the same type of parameter variations (disjoint trajectories but shared change types), so Table I only demonstrates in-distribution detection. Section III-B1 further acknowledges that slow drifts much slower than the window δ may be missed. The paper should test CPDNet on held-out change types (e.g., a change in Q when trained on R changes) and on slower drifts to substantiate the 'change-aware' claim beyond the trained regimes.
- [Section IV-C and Section V-C (last paragraph)] The paper explicitly limits its scope to single-change, finite-horizon scenarios and states that significant structural changes would require system identification. These are honest limitations, but they directly qualify the abstract's broad claims of handling 'temporal variations' and 'model mismatches' in general. Please either temper the claims to the tested regime or add experiments with repeated/multiple changes to support the stated scope.
minor comments (6)
- [Section V-B2] The sentence 'retaining over 55% of the performance gap between hybrid-driven and optimal methods' is ambiguous; please clarify whether 55% of the gap is retained or closed, and give the computation.
- [Section V-A1] The paragraph describing the constant-acceleration model is duplicated; remove the repetition.
- [Table I] The heading 'MSE (dB)' for a comparison of values in [0,1] is nonstandard; consider reporting mean absolute error or similar, with dB used only if clearly defined.
- [Section V-B1] The notation '1/r^2 [dB]' is confusing: state explicitly that R = r^2 I and that dB refers to 10 log10(1/r^2).
- [Figures 3 and 4] The bottom panels plot both state and observation values with labels 'Estimation y'/'True y'; clarify the units and what is being compared (state vs output).
- [Algorithm 2, line 8] After the update step on line 7, the Kalman gain should be recomputed with the updated θ; the pseudocode is ambiguous as written.
Circularity Check
No significant circularity: CPDNet is supervised by external state-error labels and the adaptation loss is an independent innovation-based proxy.
full rationale
The paper's derivation chain is self-contained rather than circular. CPDNet is trained as a supervised detector: its input features are a nonlinear function of the innovation norm (Eq. 10), while its training target is a nonlinear function of the true state-estimation error (Eq. 13). These are different quantities, and the target is anchored to ground-truth state trajectories in the offline dataset D_v, not constructed from the same innovation signal in a way that would make the prediction tautological. The online adaptation loss (Eq. 16) minimizes the innovation norm plus regularization; this is a heuristic proxy taken from prior work [50], not the evaluation metric (Eq. 23, state MSE). The paper explicitly calls the resulting update a 'CPDNet-gated heuristic adaptation magnitude' and does not claim the loss is theoretically equivalent to state error. The self-citations to KalmanNet [19] and to the unsupervised innovation-based loss [50] are normal references to published, externally developed results; they do not smuggle in the paper's conclusion. The CPDNet evaluation in Table I compares its output to the separately computed KalmanNet error on held-out change scenarios, which is a legitimate generalization test, not a fitted-input prediction. The manuscript also includes honest limitations (e.g., the detection window may miss slow drift, and repeated changes are left for future work), which further indicates the authors are not disguising assumptions as derivations. No step in the paper reduces, by construction or by self-citation, to its own inputs.
Assumptions & free parameters
free parameters (7)
- gamma (feature/label scaling) =
not reported
- thresh (CPDNet trigger threshold) =
not reported
- epsilon (max online learning rate) =
not reported
- rho (regularization coefficient) =
not reported
- delta (CPDNet window length) =
not reported
- tau_max (truncated BPTT horizon) =
not reported
- CPDNet architecture hyperparameters (RNN hidden size, layers) =
not reported
assumptions (4)
- domain assumption The l2 norm of the innovation process is a reliable indicator of KalmanNet misalignment.
- domain assumption Minimizing the squared innovation norm with one gradient step improves state estimation after a distribution shift.
- domain assumption The state-transition f(.) and observation h(.) functions are known well enough to compute meaningful innovations.
- domain assumption The change types encountered at test time belong to the same family as those in the nonstationary training set D_v.
Cite this review
Pith. "Pith review of Change-Aware Self-Adaptive AI-Aided Kalman Filters With Neural Change Point Detection." pith.science (2026). https://pith.science/paper/4Y7J2532
@misc{pith2026260713387,
author = {Pith},
title = {Pith review of: Change-Aware Self-Adaptive AI-Aided Kalman Filters With Neural Change Point Detection},
year = {2026},
howpublished = {\url{https://pith.science/paper/4Y7J2532}},
note = {Machine review of arXiv:2607.13387}
}
read the original abstract
Reliable state estimation in dynamical systems is often challenged by model mismatches, unknown noise statistics, and temporal variations. While AI-aided Kalman filters such as KalmanNet leverage deep learning to enhance classical estimation, they remain vulnerable to distribution shifts and lack mechanisms for autonomous adaptation. This work introduces Change-Aware Self-Adaptive KalmanNet (CASA-KalmanNet), an online adaptation framework that integrates a dedicated neural module, termed CPDNet, to monitor the interpretable internal features of KalmanNet and provide soft indicators of reliability degradation. These indicators dynamically regulate an online learning process, enabling data-efficient and timely adaptation to both abrupt and gradual changes in the system without requiring additional state labels from the changed regime. Numerical experiments on linear and nonlinear state-space models show that CASA-KalmanNet consistently outperforms existing learning-based filters under model mismatch, while approaching the accuracy of optimal classical methods with full domain knowledge.
Figures
Figures from the paper (6 more)
Forward citations
Cited by 1 Pith paper
-
ARC: Augmented-Rank Conformalization for Changepoint Localization --- Finite-Sample Validity and Distribution-Robust Efficiency
Rank-based conformal scores make changepoint localization sets finite-sample valid for any frozen weights and exactly invariant to monotone data transforms, transferring certified set lengths across the entire monotone orbit.
Reference graph
Works this paper leans on
-
[28]
Adaptive KalmanNet: Data-driven Kalman filter with fast adaptation,
X. Ni, G. Revach, and N. Shlezinger, “Adaptive KalmanNet: Data-driven Kalman filter with fast adaptation,” inProc. IEEE Int. Conf. Acoust. Speech Signal Process., 2024, pp. 5970–5974
2024
-
[29]
EM-Kalmannet: AI-aided kalman tracking in partially known time-varying state-space models,
O. Cohen, X. Ni, N. Shlezinger, and T. Routtenberg, “EM-Kalmannet: AI-aided kalman tracking in partially known time-varying state-space models,” inIEEE Sensor Array and Multichannel Signal Processing Workshop (SAM), 2026
2026
-
[30]
MAML- KalmanNet: A neural network-assisted Kalman filter based on model-agnostic meta-learning,
S. Chen, Y . Zheng, D. Lin, P. Cai, Y . Xiao, and S. Wang, “MAML- KalmanNet: A neural network-assisted Kalman filter based on model-agnostic meta-learning,”IEEE Trans. Signal Process., vol. 73, pp. 988–1003, 2025
2025
-
[1]
Bar-Shalom, X
Y . Bar-Shalom, X. R. Li, and T. Kirubarajan,Estimation With Applications to Tracking and Navigation: Theory Algorithms and Software. John Wiley & Sons, 2004
2004
-
[2]
Tracking targets using adaptive kalman filter- ing,
P.-O. Gutman and M. Velger, “Tracking targets using adaptive kalman filter- ing,”IEEE Trans. Aerosp. Electron. Syst., vol. 26, no. 5, pp. 691–699, 1990
1990
-
[3]
Durbin and S
J. Durbin and S. J. Koopman,Time Series Analysis by State Space Methods. Oxford University Press, 2012
2012
-
[4]
The Kalman filter,
S. Gannot and A. Yeredor, “The Kalman filter,”Springer Handbook of Speech Processing, pp. 135–160, 2008
2008
-
[5]
A new approach to linear filtering and prediction problems,
R. E. Kalman, “A new approach to linear filtering and prediction problems,” J. Basic Eng., vol. 82, no. 1, pp. 35–45, 1960
1960
Show all 53 references
-
[6]
The Kalman filter-its recognition and development for aerospace applications,
S. F. Schmidt, “The Kalman filter-its recognition and development for aerospace applications,”J. Guid. Control Dyn., vol. 4, no. 1, pp. 4–7, 1981
1981
-
[7]
Unscented filtering and nonlinear estimation,
S. J. Julier and J. K. Uhlmann, “Unscented filtering and nonlinear estimation,”Proc. IEEE, vol. 92, no. 3, pp. 401–422, 2004
2004
-
[8]
Artificial intelligence-aided Kalman filters: AI-augmented designs for Kalman-type algorithms,
N. Shlezinger, G. Revach, A. Ghosh, S. Chatterjee, S. Tang, T. Imbiriba, J. Dunik, O. Straka, P. Closas, and Y . C. Eldar, “Artificial intelligence-aided Kalman filters: AI-augmented designs for Kalman-type algorithms,”IEEE Signal Process. Mag., 2025, early access
2025
-
[9]
Model-based deep learning,
N. Shlezinger, J. Whang, Y . C. Eldar, and A. G. Dimakis, “Model-based deep learning,”Proc. IEEE, vol. 111, no. 5, pp. 465–499, 2023
2023
-
[10]
Augmented physics-based machine learning for navigation and tracking,
T. Imbiriba, O. Straka, J. Duník, and P. Closas, “Augmented physics-based machine learning for navigation and tracking,”IEEE Trans. Aerosp. Electron. Syst., vol. 60, no. 3, pp. 2692–2704, 2024
2024
-
[11]
Learning nonlinear state–space models using autoencoders,
D. Masti and A. Bemporad, “Learning nonlinear state–space models using autoencoders,”Automatica, vol. 129, p. 5–1098, 2021
2021
-
[12]
NNAKF: A neural network adapted Kalman filter for target tracking,
S. Jouaber, S. Bonnabel, S. Velasco-Forero, and M. Pilte, “NNAKF: A neural network adapted Kalman filter for target tracking,” inProc. IEEE Int. Conf. Acoust. Speech Signal Process., 2021, pp. 4075–4079
2021
-
[13]
EKFNet: Learning system noise covariance parameters for nonlinear tracking,
L. Xu and R. Niu, “EKFNet: Learning system noise covariance parameters for nonlinear tracking,”IEEE Trans. Signal Process., vol. 72, pp. 3139–3152, 2024
2024
-
[14]
Adaptive Kalman-informed transformer,
N. Cohen and I. Klein, “Adaptive Kalman-informed transformer,”Eng. Appl. Artif. Intell., vol. 146, p. 110221, 2025
2025
-
[15]
Combining generative and discriminative models for hybrid inference,
V . G. Satorras, Z. Akata, and M. Welling, “Combining generative and discriminative models for hybrid inference,” inProc. Adv. Neural Inf. Process., 2019, pp. 13 802–13 812
2019
-
[16]
Neural augmentation of Kalman filter with hypernetwork for channel tracking,
K. Pratik, R. A. Amjad, A. Behboodi, J. B. Soriaga, and M. Welling, “Neural augmentation of Kalman filter with hypernetwork for channel tracking,” inProc. IEEE Glob. Commun. Conf., 2021
2021
-
[17]
DANSE: Data-driven non-linear state estimation of model-free process in unsupervised learning setup,
A. Ghosh, A. Honoré, and S. Chatterjee, “DANSE: Data-driven non-linear state estimation of model-free process in unsupervised learning setup,” IEEE Trans. Signal Process., vol. 72, pp. 1824–1838, 2024
2024
-
[18]
DeepBayes—an estimator for parameter estimation in stochastic nonlinear dynamical models,
A. Ghosh, M. Abdalmoaty, S. Chatterjee, and H. Hjalmarsson, “DeepBayes—an estimator for parameter estimation in stochastic nonlinear dynamical models,”Automatica, vol. 159, p. 111327, 2024
2024
-
[19]
KalmanNet: Neural network aided Kalman filtering for partially known dynamics,
G. Revach, N. Shlezinger, X. Ni, A. L. Escoriza, R. J. Van Sloun, and Y . C. Eldar, “KalmanNet: Neural network aided Kalman filtering for partially known dynamics,”IEEE Trans. Signal Process., vol. 70, pp. 1532–1547, 2022
2022
-
[20]
RTSNet: Learning to smooth in partially known state-space models,
G. Revach, X. Ni, N. Shlezinger, R. J. van Sloun, and Y . C. Eldar, “RTSNet: Learning to smooth in partially known state-space models,” IEEE Trans. Signal Process., vol. 71, pp. 4441–4456, 2023
2023
-
[21]
Split-KalmanNet: A robust model-based deep learning approach for state estimation,
G. Choi, J. Park, N. Shlezinger, Y . C. Eldar, and N. Lee, “Split-KalmanNet: A robust model-based deep learning approach for state estimation,”IEEE Trans. Veh. Technol., vol. 72, no. 9, pp. 12 326–12 331, 2023
2023
-
[22]
Latent-KalmanNet: Learned Kalman filtering for tracking from high-dimensional signals,
I. Buchnik, G. Revach, D. Steger, R. J. Van Sloun, T. Routtenberg, and N. Shlezinger, “Latent-KalmanNet: Learned Kalman filtering for tracking from high-dimensional signals,”IEEE Trans. Signal Process., vol. 72, pp. 352–367, 2023
2023
-
[23]
Nonlinear Kalman filtering based on self-attention mechanism and lattice trajectory piecewise linear approximation,
J. Wang, X. Geng, and J. Xu, “Nonlinear Kalman filtering based on self-attention mechanism and lattice trajectory piecewise linear approximation,”arXiv preprint arXiv:2404.03915, 2024
2024 arXiv
-
[24]
GSP-KalmanNet: Tracking graph signals via neural-aided Kalman filtering,
I. Buchnik, G. Sagi, N. Leinwand, Y . Loya, N. Shlezinger, and T. Routten- berg, “GSP-KalmanNet: Tracking graph signals via neural-aided Kalman filtering,”IEEE Trans. Signal Process., vol. 72, pp. 3700–3716, 2024
2024
-
[25]
State estimation with 1-bit observations and imperfect models: Bussgang meets Kalman in neural networks,
C. Jung, T. Ha, H. Kim, and J. Park, “State estimation with 1-bit observations and imperfect models: Bussgang meets Kalman in neural networks,”arXiv preprint arXiv:2507.17284, 2025
2025 arXiv
-
[26]
Discriminative and generative learning for linear estimation of random signals [lecture notes],
N. Shlezinger and T. Routtenberg, “Discriminative and generative learning for linear estimation of random signals [lecture notes],”IEEE Signal Process. Mag., vol. 40, no. 6, pp. 75–82, 2023
2023
-
[27]
Towards out- of-distribution generalization: A survey,
J. Liu, Z. Shen, Y . He, X. Zhang, R. Xu, H. Yu, and P. Cui, “Towards out- of-distribution generalization: A survey,”arXiv preprint arXiv:2108.13624, 2021
2021 arXiv
-
[31]
Approaches to adaptive filtering,
R. Mehra, “Approaches to adaptive filtering,”IEEE Trans. Autom. Control, vol. 17, no. 5, pp. 693–698, 1972
1972
-
[32]
An approach to time series smoothing and forecasting using the EM algorithm,
R. H. Shumway and D. S. Stoffer, “An approach to time series smoothing and forecasting using the EM algorithm,”J. Time Ser. Anal., vol. 3, no. 4, pp. 253–264, 1982
1982
-
[33]
Variational adaptive Kalman filter with Gaussian-Inverse-Wishart mixture distribution,
Y . Huang, Y . Zhang, P. Shi, and J. Chambers, “Variational adaptive Kalman filter with Gaussian-Inverse-Wishart mixture distribution,”IEEE Trans. Automat. Contr., vol. 66, no. 4, pp. 1786–1793, 2021
2021
-
[34]
A novel robust Kalman filtering framework based on normal-skew mixture distribution,
M. Bai, Y . Huang, B. Chen, and Y . Zhang, “A novel robust Kalman filtering framework based on normal-skew mixture distribution,”IEEE Trans. Syst. Man Cybern. Syst., vol. 52, no. 11, pp. 6789–6805, 2022
2022
-
[35]
Distributed generalized minimum error entropy unscented Kalman filter under hybrid attacks without prior knowledge,
J. He, G. Wang, Z. Feng, S. Zhong, P. Zhang, and B. Peng, “Distributed generalized minimum error entropy unscented Kalman filter under hybrid attacks without prior knowledge,”IEEE Trans. Instrum. Meas., vol. 74, pp. 1–12, 2025
2025
-
[36]
Variational nonlinear Kalman filtering with unknown process noise covariance,
H. Lan, J. Hu, Z. Wang, and Q. Cheng, “Variational nonlinear Kalman filtering with unknown process noise covariance,”IEEE Trans. Aerosp. Electron. Syst., vol. 59, no. 6, pp. 9177–9190, 2023
2023
-
[37]
Asynchronous online adaptation via modular drift detection for deep receivers,
N. Uzlaner, T. Raviv, N. Shlezinger, and K. Todros, “Asynchronous online adaptation via modular drift detection for deep receivers,”IEEE Trans. Wireless Commun., vol. 24, no. 5, pp. 4454–4468, 2025
2025
-
[38]
University of Michigan north campus long-term vision and lidar dataset,
N. Carlevaris-Bianco, A. K. Ushani, and R. M. Eustice, “University of Michigan north campus long-term vision and lidar dataset,”Int. J. Robot. Res., vol. 35, no. 9, pp. 1023–1035, 2015
2015
-
[39]
Cubature Kalman filters,
I. Arasaratnam and S. Haykin, “Cubature Kalman filters,”IEEE Trans. Autom. Control, vol. 54, no. 6, pp. 1254–1269, 2009
2009
-
[40]
Model-based deep learning,
N. Shlezinger and Y . C. Eldar, “Model-based deep learning,”Found. Trends Signal Process., vol. 17, no. 4, pp. 291–416, 2023
2023
-
[41]
A survey of methods for time series change point detection,
S. Aminikhanghahi and D. J. Cook, “A survey of methods for time series change point detection,”Knowl. Inf. Syst., vol. 51, no. 2, pp. 339–367, 2017
2017
-
[42]
Bayesian online change point detection,
R. P. Adams and D. J. MacKay, “Bayesian online change point detection,” arXiv preprint arXiv:0710.3742, 2007
2007 arXiv
-
[43]
Restarted Bayesian online change-point detector achieves optimal detection delay,
R. Alami, O. Maillard, and R. Féraud, “Restarted Bayesian online change-point detector achieves optimal detection delay,” inProc. Int. Conf. Mach. Learn.PMLR, 2020, pp. 211–221
2020
-
[44]
Kernel change-point analysis,
Z. Harchaoui, E. Moulines, and F. Bach, “Kernel change-point analysis,” Proc. Adv. Neural Inf. Process., vol. 21, 2008
2008
-
[45]
Practical and powerful kernel-based change-point detection,
H. Song and H. Chen, “Practical and powerful kernel-based change-point detection,”IEEE Trans. Signal Process., vol. 72, pp. 5174–5186, 2024
2024
-
[46]
Learning under concept drift: A review,
J. Lu, A. Liu, F. Dong, F. Gu, J. Gama, and G. Zhang, “Learning under concept drift: A review,”IEEE Trans. Knowl. Data Eng., vol. 31, no. 12, pp. 2346–2363, 2018
2018
-
[47]
Learning with drift detection,
J. Gama, P. Medas, G. Castillo, and P. Rodrigues, “Learning with drift detection,” inBrazilian Symposium on Artificial Intelligence. Springer, 2004, pp. 286–295
2004
-
[48]
Concept drift detection for deep learning aided receivers in dynamic channels,
N. Uzlaner, T. Raviv, N. Shlezinger, and K. Todros, “Concept drift detection for deep learning aided receivers in dynamic channels,” inProc. IEEE Workshop Signal Process. Adv. Wirel., 2024, pp. 371–375
2024
-
[49]
Adversarial learning targeting deep neural network classification: A comprehensive review of defenses against attacks,
D. J. Miller, Z. Xiang, and G. Kesidis, “Adversarial learning targeting deep neural network classification: A comprehensive review of defenses against attacks,”Proc. IEEE, vol. 108, no. 3, pp. 402–433, 2020
2020
-
[50]
Unsupervised learned Kalman filtering,
G. Revach, N. Shlezinger, T. Locher, X. Ni, R. J. van Sloun, and Y . C. Eldar, “Unsupervised learned Kalman filtering,” inProc. Eur. Signal Process. Conf.IEEE, 2022, pp. 1571–1575
2022
-
[51]
Training recurrent neural networks,
I. Sutskever, “Training recurrent neural networks,” Ph.D. dissertation, 2013
2013
-
[52]
Memory-efficient backpropagation through time,
A. Gruslys, R. Munos, I. Danihelka, M. Lanctot, and A. Graves, “Memory-efficient backpropagation through time,”Proc. Adv. Neural Inf. Process., vol. 29, 2016. 15
2016
-
[53]
Uncertainty quantification in deep learning based Kalman filters,
Y . Dahan, G. Revach, J. Dunik, and N. Shlezinger, “Uncertainty quantification in deep learning based Kalman filters,” inProc. IEEE Int. Conf. Acoust. Speech Signal Process., 2024, pp. 13 121–13 125
2024
Reviewed August 2, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.