REVIEW 4 major objections 5 minor 26 references
A Predictive Approach for Enhancing Accuracy in Remote Robotic Surgery Using Informer Model
T0 review · 4 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read The paper claims that an Informer-based Transformer predicts a surgical robot's tool-tip position with over 90% accuracy under packet loss, outperforming LSTM, RNN, and TCN on the JIGSAWS knot-tying task.
desk verdict A relevant application of Informer to telesurgery position prediction, but the undefined accuracy metric and the unresolved ground-truth term in Eq (15) make the >90% claim unsupported. 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 machinery is the Informer model, a Transformer variant whose ProbSparse attention keeps only the top-$u$ queries selected by a KL-divergence sparsity score, cutting attention cost from $\mathcal{O}(L^2)$ to $\mathcal{O}(L \log L)$. A four-state Hidden Markov Model supplies realistic packet-loss patterns that corrupt the position stream before it reaches the predictor. The paper's modification adds the squared true-minus-predicted position error $e_x(t)^\top W e_x(t)$ to the sparsity metric, and the optimization problem from Section III is folded into training through loss terms for position error, energy, smoothness, and network robustness.
What would settle it
Run the model's test phase with the true-position term in Eq. (15) replaced by a causal estimate or removed, and compare the resulting X, Y, and Z accuracies with the reported 96.68%, 95.96%, and 90.37%; a large drop would show the published accuracy depends on access to future ground truth.
Extended reading notes
Core claim
The central claim, stated on the paper's own terms, is that the Informer architecture—a Transformer built for long-sequence time-series forecasting—can be adapted to estimate the 3D tool-tip position of the patient-side manipulator accurately enough to absorb network-induced packet loss in Tactile Internet telesurgery. The authors modify the Informer's ProbSparse attention with a position-error term, embed constraints such as energy efficiency and smoothness through a differentiable optimization layer, and augment the input with simulated network conditions. Evaluated on 39 knot-tying trials from the JIGSAWS dataset, the model is reported to achieve over 90% accuracy on all three axes and lower MSE, MAE, and RMSE than LSTM, RNN, and TCN.
Load-bearing premise
The claim that the model predicts future positions above 90% accuracy depends on a formula that, as written, needs the true position being predicted; if that formula is active at test time, the accuracy figure is not a prediction.
Editorial extensions
If this is right
- If the reported accuracy is reproducible, telesurgery systems can keep the patient-side arm on course during packet loss without relying on retransmission, which would add unacceptable latency.
- The $\mathcal{O}(L \log L)$ complexity claim means the same model could run on edge hardware near the patient side, not only in a data center.
- The accuracy gap between axes, with Z lagging X and Y, suggests future versions should weight attention toward the axis with the fastest dynamics.
- The four-state HMM evaluation creates a benchmark protocol that separates burst-loss and random-loss behavior, making model comparisons more informative than a single average loss rate.
- Embedding network features such as predicted latency and jitter as auxiliary inputs points toward a predictor that adapts to changing network conditions in real time.
Reading between the lines
- Inference: the same packet-loss-plus-Informer pipeline could be applied to other telemetry channels, such as orientation, gripper angle, or force, which are equally latency-critical in telesurgery.
- Inference: the per-axis accuracy differences suggest a future variant could allocate attention budget dynamically per axis, putting more weight on the fastest-moving coordinate.
- Inference: feeding predicted latency and jitter as auxiliary inputs, as the paper proposes, points toward a closed-loop controller where the predictor and the network estimator are trained jointly.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes an Informer-based prediction framework for estimating the patient-side manipulator's tool-tip position in remote robotic surgery under network packet loss. Packet loss is simulated with a four-state hidden Markov model, and the authors claim to integrate an optimization problem into the Informer's training via a differentiable optimization layer, modifying the ProbSparse attention sparsity metric to prioritize position error. The method is evaluated on the JIGSAWS knot-tying dataset, reporting over 90% prediction accuracy under various network conditions and claiming superiority over TCN, RNN, and LSTM.
Significance. If the reported results were valid, this would be a practically relevant demonstration of an efficient transformer for a Tactile Internet application, with the O(L log L) complexity argument being a strength. The use of a public dataset and comparison with standard baselines is another positive. However, the central numerical claims are not currently credible: Eq. (15) as written introduces ground-truth leakage into the attention mechanism, the 'accuracy' metric is never defined, the evaluation protocol lacks essential details, and no code or error bars are provided. These issues undermine the paper's headline contribution, although the underlying idea remains potentially salvageable.
major comments (4)
- [Section V-B-b, Eq. (15)] The modified sparsity metric M_pos(q_i, K) = M(q_i, K) + λ1 e_x(t)^T W e_x(t), with e_x(t) = p(t) − p_hat(t), is stated without any qualification about its use at inference. At test time, p(t) is the unknown target position, so this term cannot be computed without accessing ground-truth labels. If the term is active during inference, the attention mechanism is conditioned on the target, making the reported accuracies in Section VI the result of label leakage rather than genuine prediction. If the term is intended only for training, this must be stated explicitly, the inference-time forward pass must be defined, and the experiments must be re-run accordingly. As written, the validity of every accuracy figure in Table II and Figure 4 is in question.
- [Section VI-C2, Table II] The paper never defines the 'accuracy' metric used to report values such as 96.68% for the X axis. Without a formula (e.g., 1 − normalized RMSE, threshold-based hit rate, or R²), these percentages are uninterpretable and cannot be compared across models or conditions. The authors should define the metric precisely, report it alongside MSE/MAE/RMSE, and provide uncertainty estimates (e.g., standard deviation over multiple runs or trials).
- [Section VI] The experimental protocol is incomplete. There is no description of the train/test split (e.g., which of the 39 JIGSAWS knot-tying trials are used for training versus testing), how the HMM packet-loss corruption is applied to training and test sequences, the hyperparameters of the Informer and baselines, or the number of runs. The comparison in Table I is therefore not reproducible, and it is unclear whether TCN, RNN, and LSTM were tuned with comparable effort or received identical input features. The authors should provide full implementation details, code, and a clear evaluation protocol.
- [Section V-a] The claimed 'differentiable optimization layer' is not actually specified. Equations (14), (16), and (17) are weighted loss terms appended to the training objective, not an OptNet-style differentiable optimization layer with a constrained forward pass, KKT conditions, or a projection step. Either the paper should present the actual layer and how constraints are enforced during the forward pass, or it should reframe the contribution as a multi-term training loss with penalty-based regularization. As written, the contribution 'embedding constraints using a differentiable optimization layer' is not supported.
minor comments (5)
- [Section IV-B] The heading contains a typo: 'Approch' should be 'Approach'.
- [Section IV-B-d, Eq. (10)] Equation (10) is written identically to the standard attention formula in Eq. (7), but the text says Q is a sparse matrix containing the top-u queries. The equation should explicitly use the selected sparse queries, e.g., \bar{Q}, to avoid confusion.
- [Section IV-A, Eqs. (5)-(6)] The symbol \hat{p}(t) is used to denote the corrupted input sequence (set to zero on packet loss), whereas elsewhere in the paper \hat{p}(t) denotes the predicted position. This notation clash makes the data flow confusing and should be resolved, for example by using p_corrupted(t) for the corrupted input.
- [References] The reference list is malformed: reference [2] is truncated ('Accelerating Tactile...'), and reference [3] appears to be merged with the text of reference [4]. The bibliography needs to be cleaned up.
- [Section VI-C1, Fig. 4] The text says the packet loss pattern is shown over 1000 time steps, while Fig. 4 shows predictions for 200 test time steps; the relationship between these sequence lengths and the JIGSAWS trial lengths should be clarified.
Circularity Check
Eq. (15) injects the ground-truth position error into the attention sparsity metric, so the reported >90% prediction accuracy may be conditioned on the target itself.
-
self definitional
[Section V-B, Eq. (15)]
"Mpos(qi, K) = M (qi, K) + λ1ex(t)T W ex(t) (15) where M (qi, K) is the original sparsity metric for attention weights. ex(t) = p(t)− ˆp(t) is the state estimation error for the tooltip position."
The modified ProbSparse attention metric is defined using ex(t) = p(t) − p_hat(t), where p(t) is the future tool-tip position the model is supposed to predict and p_hat(t) is the model's own estimate. At inference, p(t) is not available; computing ex(t) requires the ground-truth label. If the term is active in the forward pass, the attention weights are steered by the target value, so the reported accuracy figures in Section VI are not independent predictions but outputs partly derived from the labels. If one instead substitutes p_hat(t) for p(t), the forward pass becomes self-referential: attention depends on the output, which depends on attention.
full rationale
The paper's claimed derivation chain is: 4-state HMM simulates packet loss, the corrupted position sequence is fed to an Informer model, and a modified ProbSparse attention mechanism yields >90% position-prediction accuracy. The base Informer architecture and the HMM are external, standard components, and the prior-work self-citation [19] about Kalman filtering is not load-bearing. The one novel, load-bearing step is Eq. (15), which adds the position-estimation error ex(t)^T W ex(t) to the attention sparsity score. Since ex(t) requires the true position p(t) at the time step being predicted, the attention mechanism is defined in terms of the target itself unless the paper explicitly removes the term at test time, which it never does. The literal reading of the model therefore makes the reported prediction accuracies (96.68%, 95.96%, 90.37%) partly products of the ground-truth trajectory. This is a definitional circularity in the central mechanism, not merely a missing benchmark or an undefined accuracy metric, and it undermines every accuracy claim in Section VI. Under a charitable training-only interpretation the results might be salvageable, but the text provides no such restriction, so the central prediction claim reduces by construction to its input.
Assumptions & free parameters
free parameters (12)
- Alpha (α)
- Beta (β)
- Lambda1 (λ1)
- Weighting matrix W
- Gamma1 (γ1)
- Gamma2 (γ2)
- Delta1 (δ1)
- Eta1, Eta2, Eta3 (η1, η2, η3)
- Burst density PB and gap density PG =
varied 0.3 to 0.8 / 0.95 to 0.70
- Burst length and gap length =
varied 4 to 12 / 3 to 8
- Informer top-query factor c
- Informer architecture hyperparameters
assumptions (5)
- domain assumption Zero-valued samples represent lost packets (Eq 5).
- domain assumption The 4-state Markov chain of Eq (3) accurately describes Tactile Internet packet-loss dynamics.
- domain assumption JIGSAWS knot-tying kinematics at 30 Hz represent the haptic command stream of remote surgery.
- ad hoc to paper The differentiable optimization layer can be trained end-to-end and preserves O(L log L).
- ad hoc to paper The sparsity metric Mpos in Eq (15) is evaluable without the target p(t) at inference.
Cite this review
Pith. "Pith review of A Predictive Approach for Enhancing Accuracy in Remote Robotic Surgery Using Informer Model." pith.science (2026). https://pith.science/paper/AD5KGR6S
@misc{pith2026250114678,
author = {Pith},
title = {Pith review of: A Predictive Approach for Enhancing Accuracy in Remote Robotic Surgery Using Informer Model},
year = {2026},
howpublished = {\url{https://pith.science/paper/AD5KGR6S}},
note = {Machine review of arXiv:2501.14678}
}
read the original abstract
Precise and real-time estimation of the robotic arm's position on the patient's side is essential for the success of remote robotic surgery in Tactile Internet (TI) environments. This paper presents a prediction model based on the Transformer-based Informer framework for accurate and efficient position estimation. Additionally, it combines a Four-State Hidden Markov Model (4-State HMM) to simulate realistic packet loss scenarios. The proposed approach addresses challenges such as network delays, jitter, and packet loss to ensure reliable and precise operation in remote surgical applications. The method integrates the optimization problem into the Informer model by embedding constraints such as energy efficiency, smoothness, and robustness into its training process using a differentiable optimization layer. The Informer framework uses features such as ProbSparse attention, attention distilling, and a generative-style decoder to focus on position-critical features while maintaining a low computational complexity of O(L log L). The method is evaluated using the JIGSAWS dataset, achieving a prediction accuracy of over 90 percent under various network scenarios. A comparison with models such as TCN, RNN, and LSTM demonstrates the Informer framework's superior performance in handling position prediction and meeting real-time requirements, making it suitable for Tactile Internet-enabled robotic surgery.
Figures
Reference graph
Works this paper leans on
-
[1]
Kumar, P., Jolfaei, A., & Kant, K. (2024). Guest Editorial of the Special Section on Tactile Internet for Consumer Internet of Things Opportunities and Challenges. IEEE Transactions on Consumer Electronics, 70(2), 4965-4967
work page 2024
-
[2]
Sengupta, J., Dey, D., Ferlin, S., Ghosh, N., & Bajpai, V . (2024). Accelerating Tactile
work page 2024
-
[3]
Li, Chengkun, et al. ”Extended Reality With HMD-Assisted Guid- ance and Console 3D Overlay for Robotic Surgery Remote Men- toring.” IEEE Robotics and Automation Letters (2024)
work page 2024
-
[4]
arXiv preprint arXiv:2401.06657.Gupta, R., Tanwar, S., Tyagi, S., & Kumar, N
Internet with QUIC: A Security and Privacy Perspective. arXiv preprint arXiv:2401.06657.Gupta, R., Tanwar, S., Tyagi, S., & Kumar, N. (2019). Tactile-internet-based telesurgery system for healthcare 4.0: An architecture, research challenges, and future directions. IEEE network, 33(6), 22-29
arXiv 2019
-
[5]
Zhang, Q., Liu, J., & Zhao, G. (2018). Towards 5G enabled tactile robotic telesurgery. arXiv preprint arXiv:1803.03586
arXiv 2018
-
[6]
Li, Shuang, et al. ”A dexterous hand-arm teleoperation system based on hand pose estimation and active vision.” IEEE Transactions on Cybernetics 54.3 (2022): 1417-1428
work page 2022
-
[7]
Patil, H., Negi, H. S., Devarani, P. A., Barve, A., & Maranan, R. (2024, May). Enhancing Tactile Internet Experiences through Control Mechanisms and Predictive AI. In 2024 2nd International Conference on Advancement in Computation & Computer Tech- nologies (InCACCT) (pp. 235-239). IEEE
work page 2024
-
[8]
Szabo, D., Gulyas, A., Fitzek, F. H., & Lucani, D. E. (2015, May). Towards the tactile internet: Decreasing communication latency with network coding and software defined networking. In Proceedings of European Wireless 2015; 21th European Wireless Conference (pp. 1-6). VDE
work page 2015
Show all 26 references
-
[9]
(2021, May)
Zhou, H., Zhang, S., Peng, J., Zhang, S., Li, J., Xiong, H., & Zhang, W. (2021, May). Informer: Beyond efficient transformer for long sequence time-series forecasting. In Proceedings of the AAAI conference on artificial intelligence (V ol. 35, No. 12, pp. 11106- 11115)
2021
-
[10]
S., Reiley, C
Gao, Y ., Vedula, S. S., Reiley, C. E., Ahmidi, N., Varadarajan, B., Lin, H. C., ... & Hager, G. D. (2014, September). Jhu-isi gesture and skill assessment working set (jigsaws): A surgical activity dataset for human motion modeling. In MICCAI workshop: M2cai (V ol. 3, No. 2014, p. 3)
2014
-
[11]
Y ., Patel, N., Kobilarov, M., & Iordachita, I
He, C. Y ., Patel, N., Kobilarov, M., & Iordachita, I. (2020). Real Time Prediction of Sclera Force with LSTM Neural Networks in Robot-Assisted Retinal Surgery. Applied Mechanics and Materials, 896, 183-194
2020
-
[12]
G., Amirat, Y ., & Mohammed, S
Khodabandelou, G., Jung, P. G., Amirat, Y ., & Mohammed, S. (2020). Attention-based gated recurrent unit for gesture recognition. IEEE Transactions on Automation Science and Engineering, 18(2), 495-507
2020
-
[13]
Djelal, N., Ouanane, A., & Bouriachi, F. (2023). LSTM-Based Visual Control for Complex Robot Interactions. Journal Europ ´een des Syst `emes Automatis ´es, 56(5)
2023
-
[14]
Wen, X., & Li, W. (2023). Time series prediction based on LSTM- attention-LSTM model. IEEE Access, 11, 48322-48331
2023
-
[15]
Vaswani, A. (2017). Attention is all you need. Advances in Neural Information Processing Systems
2017
-
[16]
¨O., Loeff, N., & Pfister, T
Lim, B., Arık, S. ¨O., Loeff, N., & Pfister, T. (2021). Temporal fusion transformers for interpretable multi-horizon time series forecasting. International Journal of Forecasting, 37(4), 1748-1764
2021
-
[17]
Cao, Y ., Ding, Y ., Jia, M., & Tian, R. (2021). A novel temporal convolutional network with residual self-attention mechanism for remaining useful life prediction of rolling bearings. Reliability Engineering & System Safety, 215, 107813
2021
-
[18]
Zhou, H., Li, J., Zhang, S., Zhang, S., Yan, M., & Xiong, H. (2023). Expanding the prediction capacity in long sequence time- series forecasting. Artificial Intelligence, 318, 103886
2023
-
[19]
H., Batayneh, W., & Khokhar, A
Lashari, M. H., Batayneh, W., & Khokhar, A. (2024). Enhancing Precision in Tactile Internet-Enabled Remote Robotic Surgery: Kalman Filter Approach. arXiv preprint arXiv:2406.04503
2024 arXiv
-
[20]
Yu, F., Koltun, V ., & Funkhouser, T. (2017). Dilated residual networks. In Proceedings of the IEEE conference on computer vision and pattern recognition (pp. 472-480)
2017
-
[21]
Gupta, A., & Rush, A. M. (2017). Dilated convolutions for modeling long-distance genomic dependencies. arXiv preprint arXiv:1710.01278
2017 arXiv
-
[22]
The Role of Network Packet Loss Modeling in Reliable Transport of Broadcast Audio
Parikh, K., & Kim, J. The Role of Network Packet Loss Modeling in Reliable Transport of Broadcast Audio. GatesAir
-
[23]
W., & Tian, X
Yu, X., Modestino, J. W., & Tian, X. (2005, March). The accuracy of Gilbert models in predicting packet-loss statistics for a single- multiplexer network model. In Proceedings IEEE 24th Annual Joint Conference of the IEEE Computer and Communications Societies. (V ol. 4, pp. 26...
2005
-
[24]
P., Kypraios, T., & Perkins, C
Ellis, M., Pezaros, D. P., Kypraios, T., & Perkins, C. (2014). A two-level Markov model for packet loss in UDP/IP-based real-time video applications targeting residential users. Computer Networks, 70, 384-399
2014
-
[25]
Zico Kolter
Amos, Brandon, and J. Zico Kolter. ”Optnet: Differentiable opti- mization as a layer in neural networks.” International conference on machine learning. PMLR, 2017
2017
-
[26]
”A survey of optimization methods from a machine learning perspective.” IEEE transactions on cybernetics 50.8 (2019): 3668-3681
Sun, Shiliang, et al. ”A survey of optimization methods from a machine learning perspective.” IEEE transactions on cybernetics 50.8 (2019): 3668-3681. IEEE TRANSACTIONS ON CYBERNETICS 9 TABLE II INFORMER MODEL PERFORMANCE METRICS AT VARYING BURST AND GAP DENSITIES , BURST LENG...
2019
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.