REVIEW 3 major objections 5 minor 16 references
Explainable AI for Radar Resource Management: Modified LIME in Deep Reinforcement Learning
T0 review · 3 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read By replacing LIME's independent perturbations with a deep network that generates correlated tracking costs from target positions, the paper obtains a more faithful and more useful explanation of a deep-reinforcement-learning radar…
desk verdict A plausible LIME variant for correlated radar states, with a solid MAE result but a mislabeled utility metric and missing ablations. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is a DNN-based correlated sampler inserted into LIME's perturbation step. Conventional LIME draws each component of a perturbed state independently from a normal distribution around the instance being explained, which can produce physically impossible radar states because tracking costs and target positions are strongly correlated (a far target has higher tracking cost). DL-LIME instead perturbs only the $2N+1$ non-cost state components and feeds them through a pre-trained feedforward DNN that predicts the corresponding tracking costs, so the local neighborhood explored by LIME respects the learned conditional relationships. The weighted linear surrogate model is then fitted on these realistic perturbed states, and its coefficients serve as feature-importance scores.
What would settle it
Compute the true EKF tracking costs for the same perturbed positions DL-LIME feeds its DNN and compare the resulting MAE with DL-LIME's, and also run an ablation that perturbs all $3N+1$ state components while using the DNN only to keep costs consistent with positions. If DL-LIME loses its advantage in these conditions, the claim that correlation modeling is the cause of the improvement is falsified.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is that replacing LIME's independent feature perturbations with deep-network-generated correlated samples changes both the quality and the content of local explanations. The DNN takes the $2N+1$ state components that exclude tracking costs — target positions and the dual variable — and outputs the $N$ tracking costs, so each perturbed state honors the learned physics of the radar problem rather than an independence assumption. The numerical evidence (Table II) shows DL-LIME with lower MAE and higher utility than LIME, and the explanation plots (Fig. 3) show that for each target $n$, the previous tracking cost $c^n_{t-1}$ dominates the decision for Action $n$, while the other targets' costs also carry weight. The authors interpret this as the DDPG agent balancing targets jointly rather than allocating dwell time to each target in isolation.
Load-bearing premise
The load-bearing premise is that the feedforward DNN, trained on the agent's experienced states, predicts tracking costs that match the true conditional distribution for every perturbed state LIME generates; if the DNN generalizes poorly to local neighborhoods or rare states, DL-LIME's perturbed samples are no more realistic than LIME's independent samples, and the reported gains could be an artifact of perturbing fewer dimensions.
Editorial extensions
If this is right
- In the tested radar environment, DL-LIME explains the DDPG agent's dwell-time decisions with lower average MAE (1.95 versus 2.27) than conventional LIME.
- Executing DL-LIME's explained actions in the environment yields higher average utility (4.49e4 versus 4.01e4), so the explanations carry real task value.
- The runtime cost is higher (1.70 versus 0.42 seconds per decision), but the paper shows it can be traded against fidelity by adjusting the number of perturbed samples.
- The explanations show that each target's previous tracking cost dominates its own dwell-time decision, with the other targets' costs also contributing, indicating the agent allocates resources jointly.
Reading between the lines
- A direct test of the mechanism would replace the DNN's predicted costs with the exact EKF tracking costs for the same perturbed positions; if the MAE advantage persists, the benefit is correlation, not just the DNN.
- An ablation that perturbs all 16 state components while using the DNN only to restore cost-position consistency would separate correlation preservation from dimensionality reduction.
- The same correlated-sampling recipe could be applied to SHAP or other attribution methods whose independent sampling assumption distorts correlated features.
- The dominant role of previous tracking cost suggests a simple resource-allocation heuristic — allocate dwell time roughly in proportion to each target's last tracking cost — that could be benchmarked against the DDPG agent's utility.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes DL-LIME, a modification of LIME for explaining a DDPG-based radar resource manager. Conventional LIME perturbs all state components independently; DL-LIME instead perturbs only the position, velocity, and dual-variable components and uses a feedforward DNN, pretrained on experienced states, to generate the corresponding tracking-cost components, thereby preserving physical correlations during sampling. The authors evaluate fidelity (MAE), task performance (utility), runtime, and peak performance period, and report that DL-LIME outperforms conventional LIME on fidelity and utility while being slower. They also present qualitative explanations suggesting that a target's previous tracking cost dominates its dwell-time decision.
Significance. If the reported gains are reproducible, the paper makes a useful contribution by adapting LIME's sampling distribution to physically correlated radar state features without abandoning model-agnostic local surrogates. The qualitative findings in Section V-D are plausible and would be of interest to the cognitive-radar and XAI communities. The paper does not release code, error bars, or multiple-seed statistics, so the numerical claims are not independently verifiable at this stage; nevertheless, the core idea of replacing independent perturbations of correlated features with DNN-generated values is worth pursuing.
major comments (3)
- [Section V-B, Table II] Table II reports an average utility of 4.49e4 for DL-LIME, which exceeds the DDPG agent's 4.39e4 even though DDPG was trained to maximize the same utility via the Lagrangian reward in Eq. (9). This is unexpected for a local linear surrogate and requires a concrete explanation. Please specify exactly how the utility is computed: whether the LIME actions are executed as one-step replacements at the same checkpoints, whether target trajectories are held fixed across methods, and whether the DDPG utility is evaluated from the same policy that generated the explanations. If the comparison is one-step open-loop, the 'task performance' claim should be reworded; if it is closed-loop, a rollout protocol with identical random seeds and state updates must be described.
- [Section V-B] No error bars, multiple seeds, or significance tests are reported for the MAE (1.95 vs. 2.27) or utility (4.49e4 vs. 4.01e4) comparisons. Because DRL training and the target-spawning model in Section V-A2 are stochastic, single-run comparisons are insufficient to support the paper's headline superiority claim. At minimum, the authors should report means and standard deviations over several independent seeds and, if possible, paired per-slot comparisons.
- [Section IV-B.2, Section V-B] The fidelity advantage is attributed to the DNN generating tracking costs that preserve correlations, but the DNN's prediction accuracy against true EKF costs is never reported. Without validating the DNN on perturbed states, the lower MAE could simply result from perturbing fewer dimensions (2N+1 instead of 3N+1) rather than from capturing correlations. Please report the DNN's prediction error on held-out states, include an ablation that perturbs only the 2N+1 non-cost components with independent sampling, and, if feasible, compare against a covariance-based Gaussian perturbation of the full state.
minor comments (5)
- [Section V-B] The utility metric is defined with an unclosed parenthesis in 'Ut({τ n t }N n=1'; also, the description of executing LIME actions 'in the environment' should state explicitly whether the environment state is advanced between actions or whether a single time step is used.
- [Section V-B] The peak performance period values sum to 100% (48.57 + 11.20 + 40.23), implying exactly one method is best in every slot; if ties are possible, the metric definition should state how ties are resolved.
- [Section V-B] The runtime comparison in Table II is hard to interpret because the number of LIME perturbation samples for conventional LIME is not stated; the text mentions 10,000 samples only for DL-LIME. Please specify the sample count for both methods so the runtime and MAE comparison is apples-to-apples.
- [Section IV-A] Equation (12) takes the square root of an exponential kernel, which is equivalent to redefining the kernel width; this is unnecessarily confusing. Consider writing the kernel directly as exp(-D^2/(2a^2)) or using a consistent definition.
- [References] Reference [16] is cited as an arXiv preprint; if a peer-reviewed version exists, it should be cited instead. Also, the abbreviation 'Pf' and 'Pd' in Table I are not defined in the table caption; they should be introduced in the text or table.
Circularity Check
No significant circularity: the fidelity comparison is grounded in the DDPG policy's actual actions, and self-citations only provide background system-model context.
full rationale
The paper's central comparison is the fidelity of DL-LIME and LIME as local surrogates for a trained DDPG radar resource manager. That comparison is not circular: the LIME linear model is fitted to the DDPG agent's actual action outputs via the weighted least-squares loss in Eq. (13), and the reported MAE in Eq. (15) directly measures the difference between the surrogate's actions and the agent's actions. The proposed DL-LIME modification replaces independent perturbation of tracking-cost features with DNN-generated costs, where the DNN is a supervised regressor trained on a collected dataset D of experienced states; this is a modeling choice whose accuracy is not validated in the paper, but it does not make the subsequent LIME fit an identity with its inputs. The self-citations to [9] and [10] are used only to set up the radar system model and the constrained DRL formulation, not to justify the explanation results, so they are not load-bearing in a circular sense. The surprising Table II result that DL-LIME's average utility exceeds the DDPG agent's utility (4.49e4 vs 4.39e4) is an internal consistency or evaluation-protocol concern, not a circularity: it does not show that any predicted quantity is equivalent by construction to its own input. Likewise, the DNN could be inaccurate or the perturbation space could be artificially narrowed, but these are correctness and generalization risks, not instances of fitting a parameter and then renaming it a prediction. No quoted equation reduces to another equation by construction, and no central claim depends on an unverified self-citation chain. The appropriate finding is therefore no significant circularity.
Assumptions & free parameters
free parameters (5)
- Perturbation variance sigma_m^2 =
Estimated from dataset D
- LIME kernel width a =
2.5
- Ridge regularization coefficient c =
1e-3
- Number of perturbation samples K =
10000
- DNN hidden layer sizes and learning rate =
128/64 neurons, lr=1e-4
assumptions (4)
- domain assumption Extended Kalman filter and radar measurement model (Eqs. (1) to (3)) accurately describe target motion and tracking error.
- domain assumption The CMDP formulation with utility Ut = -sum costs + beta*Gamma and dual-variable update (Eqs. (7) to (10)) is a valid model for radar resource management.
- ad hoc to paper A feedforward DNN with inputs consisting of target positions and the dual variable can generate tracking costs that preserve the true correlations among state components.
- domain assumption The dataset D collected by deploying the well-trained agent is representative of the states encountered during the explanation evaluation.
Cite this review
Pith. "Pith review of Explainable AI for Radar Resource Management: Modified LIME in Deep Reinforcement Learning." pith.science (2026). https://pith.science/paper/LABIKLZD
@misc{pith2026250620916,
author = {Pith},
title = {Pith review of: Explainable AI for Radar Resource Management: Modified LIME in Deep Reinforcement Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/LABIKLZD}},
note = {Machine review of arXiv:2506.20916}
}
read the original abstract
Deep reinforcement learning has been extensively studied in decision-making processes and has demonstrated superior performance over conventional approaches in various fields, including radar resource management (RRM). However, a notable limitation of neural networks is their ``black box" nature and recent research work has increasingly focused on explainable AI (XAI) techniques to describe the rationale behind neural network decisions. One promising XAI method is local interpretable model-agnostic explanations (LIME). However, the sampling process in LIME ignores the correlations between features. In this paper, we propose a modified LIME approach that integrates deep learning (DL) into the sampling process, which we refer to as DL-LIME. We employ DL-LIME within deep reinforcement learning for radar resource management. Numerical results show that DL-LIME outperforms conventional LIME in terms of both fidelity and task performance, demonstrating superior performance with both metrics. DL-LIME also provides insights on which factors are more important in decision making for radar resource management.
Figures
Reference graph
Works this paper leans on
-
[1]
Continuous control with deep reinforcement learning,
T. Lillicrap, “Continuous control with deep reinforcement learning,” arXiv preprint arXiv:1509.02971 , 2015
arXiv 2015
-
[2]
Mastering the game of go without human knowledge,
D. Silver, J. Schrittwieser, K. Simonyan, I. Antonoglou, A. Huang, A. Guez, T. Hubert, L. Baker, M. Lai, A. Bolton et al. , “Mastering the game of go without human knowledge,” nature, vol. 550, no. 7676, pp. 354–359, 2017
2017
-
[3]
Soft actor-critic: Off- policy maximum entropy deep reinforcement learning with a stochastic actor,
T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine, “Soft actor-critic: Off- policy maximum entropy deep reinforcement learning with a stochastic actor,” in International conference on machine learning . PMLR, 2018, pp. 1861–1870
2018
-
[4]
Human-level control through deep reinforcement learning,
V . Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. Riedmiller, A. K. Fidjeland, G. Ostrovski et al. , “Human-level control through deep reinforcement learning,” nature, vol. 518, no. 7540, pp. 529–533, 2015
2015
-
[5]
C. E. Thornton, M. A. Kozy, R. M. Buehrer, A. F. Martone, and K. D. Sherbondy, “Deep reinforcement learning control for radar detection and tracking in congested spectral environments,” IEEE Transactions on Cognitive Communications and Networking , vol. 6, no. 4, pp. 1335– 1349, 2020
work page 2020
-
[6]
Scene-adaptive radar tracking with deep reinforcement learning,
M. Stephan, L. Servadei, J. Arjona-Medina, A. Santra, R. Wille, and G. Fischer, “Scene-adaptive radar tracking with deep reinforcement learning,” Machine Learning with Applications , vol. 8, p. 100284, 2022
work page 2022
-
[7]
Quality of service based radar resource management using deep reinforcement learning,
S. Durst and S. Br ¨uggenwirth, “Quality of service based radar resource management using deep reinforcement learning,” in 2021 IEEE Radar Conference (RadarConf21). IEEE, 2021, pp. 1–6
work page 2021
-
[8]
Time budget management in multifunction radars using reinforcement learning,
P. Pulkkinen, T. Aittom ¨aki, A. Str ¨om, and V . Koivunen, “Time budget management in multifunction radars using reinforcement learning,” in 2021 IEEE Radar Conference (RadarConf21) , 2021, pp. 1–6
work page 2021
Show all 16 references
-
[9]
Resource allocation for multi-target radar tracking via constrained deep reinforcement learning,
Z. Lu and M. C. Gursoy, “Resource allocation for multi-target radar tracking via constrained deep reinforcement learning,” IEEE Transac- tions on Cognitive Communications and Networking , vol. 9, no. 6, pp. 1677–1690, 2023
2023
-
[10]
Learning- based cognitive radar resource management for scanning and multi- target tracking,
Z. Lu, M. C. Gursoy, C. K. Mohan, and P. K. Varshney, “Learning- based cognitive radar resource management for scanning and multi- target tracking,” in ICC 2024 - IEEE International Conference on Communications, 2024, pp. 2785–2790
2024
-
[11]
Explainable artificial intelligence (xai): Concepts, taxonomies, opportu- nities and challenges toward responsible ai,
A. B. Arrieta, N. D ´ıaz-Rodr´ıguez, J. Del Ser, A. Bennetot, S. Tabik, A. Barbado, S. Garc ´ıa, S. Gil-L ´opez, D. Molina, R. Benjamins et al. , “Explainable artificial intelligence (xai): Concepts, taxonomies, opportu- nities and challenges toward responsible ai,” Informatio...
2020
-
[12]
Explainable machine learning in deployment,
U. Bhatt, A. Xiang, S. Sharma, A. Weller, A. Taly, Y . Jia, J. Ghosh, R. Puri, J. M. Moura, and P. Eckersley, “Explainable machine learning in deployment,” in Proceedings of the 2020 conference on fairness, accountability, and transparency , 2020, pp. 648–657
2020
-
[13]
” why should i trust you?
M. T. Ribeiro, S. Singh, and C. Guestrin, “” why should i trust you?” explaining the predictions of any classifier,” in Proceedings of the 22nd ACM SIGKDD international conference on knowledge discovery and data mining , 2016, pp. 1135–1144
2016
-
[14]
A unified approach to interpreting model predictions,
S. Lundberg, “A unified approach to interpreting model predictions,” arXiv preprint arXiv:1705.07874 , 2017
2017 arXiv
-
[15]
Christoph, Interpretable machine learning: A guide for making black box models explainable
M. Christoph, Interpretable machine learning: A guide for making black box models explainable . Leanpub, 2020
2020
-
[16]
A modified perturbed sampling method for local interpretable model-agnostic explanation,
S. Shi, X. Zhang, and W. Fan, “A modified perturbed sampling method for local interpretable model-agnostic explanation,” arXiv preprint arXiv:2002.07434, 2020
2002 arXiv
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.