Papers
Topics
Authors
Recent
Search
2000 character limit reached

Continuous Orthogonal Mode Decomposition: Haptic Signal Prediction in Tactile Internet

Published 10 Apr 2026 in eess.SP and cs.LG | (2604.09446v1)

Abstract: The Tactile Internet demands sub-millisecond latency and ultra-high reliability, as high latency or packet loss could lead to haptic control instability. To address this, we propose the Mode-Domain Architecture (MDA), a bilateral predictive neural network architecture designed to restore missing signals on both the human and robot sides. Unlike conventional models that extract features implicitly from raw data, MDA utilizes a novel Continuous-Orthogonal Mode Decomposition framework. By integrating an orthogonality constraint, we overcome the pervasive issue of "mode overlapping" found in state-of-the-art decomposition methods. Experimental results demonstrate that this structured feature extraction achieves high prediction accuracies of 98.6% (human) and 97.3% (robot). Furthermore, the model achieves ultra-low inference latency of 0.065 ms, significantly outperforming existing benchmarks and meeting the stringent real-time requirements of haptic teleoperation.

Summary

  • The paper introduces C-OMD that enforces strict orthogonality between haptic signal modes to eliminate mode overlap and improve robustness.
  • It employs a Mode-Domain Architecture using per-mode TCNs and cross-attention mechanisms to achieve sub-millisecond bilateral prediction.
  • Empirical results show superior accuracy (98.6% human, 97.3% robot) and rapid inference (0.06 ms), outperforming traditional variational methods.

Continuous Orthogonal Mode Decomposition for Haptic Signal Prediction in Tactile Internet

Problem Setting and Motivation

The Tactile Internet (TI) demands ultra-low latency (<1 ms<1\,\mathrm{ms}) and extremely high reliability for real-time haptic interaction between human operators and remote robots. Packet loss or latency directly undermine system transparency and stability, severely impacting practical teleoperation. Traditional ML approaches largely operate on raw time-series signals, which forces all underlying dynamics—low-frequency user intent, high-frequency environmental cues, and abrupt transients—into a shared representation, hampering both generalization and robustness.

This work addresses those limitations by proposing a signal prediction framework based on Continuous-Orthogonal Mode Decomposition (C-OMD) and a purpose-built Mode-Domain Architecture (MDA). The C-OMD imposes hard orthogonality between extracted signal modes, eliminating the persistent “mode overlapping” issue present in variational mode methods, while MDA directly leverages this decomposition for bilateral haptic prediction.

Continuous-Orthogonal Mode Decomposition: Theory and Algorithm

Signal decomposition is historically foundational in time-series and communications analysis, with tools such as Variational Mode Decomposition (VMD) and its derivatives (VME, SVMD) formulating the extraction of AM-FM modes as variational problems. However, these often lack theoretical guarantees of mode separation, depend on a priori parameter settings, and are not amenable to parallel computation.

C-OMD introduces explicit orthogonality constraints in the continuous mode space. The core optimization jointly minimizes mode bandwidths, enforces exact signal reconstruction, and constrains all extracted modes to be (L2L^2 or H2(R)H^2(\mathbb{R})) orthogonal, using an augmented Lagrangian formalism and ADMM-style updates. Explicit orthogonality is realized through a Newton–Schulz iteration applied to the Gramian of mode system and is further strengthened with per-frequency orthogonalization.

Significantly, the proposed method replaces the implicit, penalty-based attempts at reducing mode leakage (as in VMD/SVMD) with a convergence-guaranteed, projection-based process, augmenting large-scale parallelism and enhanced theoretical signal separability.

Mode-Domain Architecture for Haptic Bilateral Prediction

Rather than a monolithic sequence-to-sequence model, MDA operates fully in the decomposed mode space, processing each orthogonal component independently before selectively fusing information cross-side via cross-attention mechanisms. Figure 1

Figure 2: MDA decomposes each haptic signal into KK orthogonal modes—each processed by per-mode TCNs and mode-wise self-attention, with cross-side attention and residual coupling for robust bilateral prediction.

The architecture consists of:

  • Per-mode Temporal Convolutional Networks (TCNs) encoding each mode separately.
  • Cross-Mode Self-Attention within the decomposed human and robot latents.
  • Cross-Side Cross-Attention: bidirectional context exchange between human and robot representations, enhancing predictive capacity.
  • Linear Coupling Residuals: improved trainability and stability by preserving identity paths through residual addition before normalization.
  • Per-mode TCN Decoders for independent signal synthesis, reconstructing full haptic signals via mode summation.

This strict factorization encourages explicit learning of mode-specific temporal patterns and robust decoupling of distinct physical processes.

Implementation and Loss Formulation

C-OMD and MDA are evaluated using high-rate (1000 Hz1000\,\mathrm{Hz}) kinesthetic haptic datasets spanning multi-DoF force, velocity, and position signals. The model is trained using a composite loss:

L=Lpred+λ1Lrecon+λ2Lorth+λ3Lrel\mathcal{L} = \mathcal{L}_{\mathrm{pred}} + \lambda_1 \mathcal{L}_{\mathrm{recon}} + \lambda_2 \mathcal{L}_{\mathrm{orth}} + \lambda_3 \mathcal{L}_{\mathrm{rel}}

where Lpred\mathcal{L}_{\mathrm{pred}} is the primary per-mode prediction MSE, Lrecon\mathcal{L}_{\mathrm{recon}} penalizes misalignment in reconstructed signals, Lorth\mathcal{L}_{\mathrm{orth}} enforces Gramian orthogonality, and Lrel\mathcal{L}_{\mathrm{rel}} regularizes per-mode relative error, particularly at low SNR or low-amplitude regions.

Teacher-forcing with scheduled annealing is implemented, and autoregressive inference is utilized to restore dropped packets.

Empirical Results

Prediction accuracy and inference time are evaluated across varying prediction windows (L2L^20) and compared against VMD, SVMD, and baseline end-to-end neural architectures (Transformer, Mamba). Figure 3

Figure 1: Prediction accuracy (solid) and inference time (dashed, log scale) vs. prediction window L2L^21 for VMD, SVMD, and C-OMD architectures; green line denotes 1ms TI latency constraint.

  • C-OMD+MDA achieves 98.6% (human) and 97.3% (robot) accuracy at L2L^22, with only modest decay at larger L2L^23. In contrast, VMD and SVMD degrade much faster.
  • Inference time for C-OMD+MDA is approximately L2L^24 (L2L^25 and L2L^26 faster than VMD and SVMD, respectively), always satisfying the L2L^27 TI budget constraint.
  • C-OMD remains robust against channel SNR degradation, with accuracy loss of only L2L^28 as SNR drops from L2L^29 to H2(R)H^2(\mathbb{R})0, compared to H2(R)H^2(\mathbb{R})1 for VMD. Figure 4

    Figure 5: Sliding-window accuracy for H2(R)H^2(\mathbb{R})2 across architectures; C-OMD shows rapid cold-start convergence and consistently superior accuracy on both human and robot sides.

A critical ablation demonstrates that increasing the number of modes does not improve prediction for VMD/SVMD—indeed, excess non-orthogonal modes degrade performance due to spectral redundancy and noise amplification. C-OMD, by enforcing strong orthogonality, achieves optimal and stable performance across varying mode counts and window sizes.

Architectural Insights

The results reveal a decomposition-first, attention-second principle: hard orthogonalization at the decomposition stage is prerequisite to effective sequence modeling and attention-based fusion in this domain. Mode leakage, prevalent in previous variational methods, is the primary source of predictive instability, and its elimination by C-OMD directly translates to tangible gains in performance, latency—even in the presence of channel noise. Figure 5

Figure 3: C-OMD maintains accuracy and inference speed advantages as number of modes increases, with no efficiency-accuracy trade-off.

Implications and Future Directions

The explicit orthogonality achieved by C-OMD enables robust multi-component signal modeling suitable for contemporary TI deployments. The practical implications include real-time haptic packet restoration at sub-millisecond speeds, resilience to network-induced noise/loss, and transparent control in demanding haptic feedback scenarios. From a theoretical viewpoint, enforcing strong mode separation provides a clear path for generalization and interpretability in haptic and other multi-component time-series prediction tasks.

Potential future developments include:

  • Extending mode-domain structured attention architectures to other cyber-physical and communication systems.
  • Adaptive mode number selection, potentially via Bayesian or nonparametric priors over the decomposition.
  • Incorporating uncertainty modeling and active re-decomposition under variable network or task conditions.

Conclusion

This paper presents a rigorous orthogonal mode decomposition approach and a mode-structured bilateral prediction architecture for haptic signal restoration in Tactile Internet systems. Hard mode orthogonality, enforced via Newton–Schulz projection, is demonstrated as the critical factor for both accuracy and computational efficiency. The results establish C-OMD+MDA as the clear Pareto-optimal method for TI haptic signal prediction, with broad implications for fast, robust, interpretable signal modeling in resource-constrained, latency-critical environments.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.