Pith. sign in

REVIEW 3 major objections 7 minor 38 references

Five swabs teach a robot the feel of a new surface

Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →

T0 review · glm-5.2

2026-07-09 06:24 UTC pith:ZVMVCNIH

load-bearing objection Parameter-isolated FiLM adaptation for force estimation in deformable tool swabbing — solid experiments, one real ambiguity about what gets adapted the 3 major comments →

arxiv 2607.07574 v1 pith:ZVMVCNIH submitted 2026-07-08 cs.RO

Context-Aware Force Estimation for Deformable Tool Manipulation in Robotic Environmental Swabbing via Few-Shot Continual Adaptation

classification cs.RO
keywords estimationtoolforcecontactdeformableacrossadaptationdynamics
verification ladder T0 review T1 audit T2 compute T3 formal T4 reserved

The pith

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

The paper addresses a practical problem: when a robot uses a soft, deformable tool (like a sponge swab) to interact with surfaces, the forces measured at the robot's wrist are a distorted, delayed version of the forces actually applied at the tool tip due to viscoelastic hysteresis in the tool material. The authors propose that this force-estimation problem can be split into two parts: (1) a general recurrent dynamics model (an LSTM) that learns the history-dependent deformation behavior of the tool, and (2) a small, surface-specific context vector that adjusts the model's internal representation to match the material properties (stiffness, friction, damping) of whatever surface or tool is currently in use. The LSTM backbone is frozen after initial training; adaptation to a new surface requires optimizing only the low-dimensional context vector from as few as five swabbing trials. This parameter isolation means that learning a new surface does not degrade performance on previously learned surfaces, eliminating catastrophic forgetting. The core mechanism is feature-wise linear modulation (FiLM), which applies a learned scale and shift to the LSTM's hidden state conditioned on the context vector, effectively re-tuning the deformation model without retraining it.

Core claim

The central finding is that a frozen LSTM backbone, when modulated by a surface-specific context vector learned from only five trials, can recover accurate contact-force estimation across nine distinct tool-surface interaction regimes (three tools of varying stiffness crossed with three surfaces of varying material properties), reducing zero-shot estimation error by 18-63% depending on the regime, while the baseline domain's performance remains statistically unchanged after all adaptation cycles. The largest improvements occur on the viscoelastic composite surface, where damping-induced phase lag and hysteresis cause the most severe zero-shot degradation (error increases over 200% relative),

What carries the argument

Frozen LSTM backbone (two layers, 64 hidden units each) + FiLM-modulated context vector z_k (low-dimensional, dimension d_z not specified) + lightweight MLP projectors mapping z_k to scale (gamma) and bias (beta) vectors that element-wise modulate the LSTM hidden state h_t. The regression head is also frozen after pretraining. Only z_k is optimized during adaptation.

Load-bearing premise

The claim that a single low-dimensional context vector optimized on only five trials fully captures the viscoelastic property shift between surfaces rests on the assumption that the baseline-trained LSTM backbone already encodes transferable deformation dynamics, so only a lightweight modulation is needed to adapt. If the backbone has over-specialized to the training surface, or if the context vector's dimensionality is too small to represent the relevant material parameters,

What would settle it

A surface or tool whose viscoelastic response cannot be captured by the context vector's modulation of the frozen backbone, such that five-trial adaptation fails to reduce error below the zero-shot baseline, would falsify the claim that the backbone encodes transferable dynamics and that the context vector is a sufficient adaptation mechanism.

Watch this falsifier — get emailed when new claim-graph text bears on it.

If this is right

  • If the separation of shared deformation dynamics from domain-specific conditioning is valid, then any robotic task involving compliant tool-environment contact (polishing, brushing, surgical swabbing, wiping) could benefit from the same frozen-backbone-plus-context-vector architecture, reducing per-surface calibration from hundreds of trials to five.
  • The approach could extend to real-time surface identification: if the context vector z_k encodes effective material properties, clustering or classifying z_k values across surfaces could serve as an implicit material classifier without explicit material sensing.
  • The parameter-isolation property means a robot operating in a non-stationary environment could maintain a growing bank of context vectors for every surface it encounters, with constant inference cost and no retraining, enabling lifelong accumulation of surface-specific calibration.
  • The finding that joint torque commands are noise rather than signal for this task suggests that simpler, cheaper robot platforms without torque sensing could achieve comparable force-estimation performance using only kinematics and wrist force-torque data.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The paper does not report the dimensionality d_z of the context vector or analyze what z_k actually encodes. If d_z is very small (e.g., 2-4 dimensions), the context vector may be capturing only a coarse stiffness scalar rather than the full viscoelastic parameter space, which would limit generalization to surfaces with novel combinations of stiffness, damping, and friction.
  • The 5-trial support set may be sufficient for the nine tested regimes but may not be a lower bound. Surfaces with more complex viscoelastic behavior (e.g., rate-dependent materials, anisotropic textures, moisture-varying conditions) could require more trials or a higher-dimensional context vector.
  • The context vector is currently selected manually during inference (the operator must know which surface is being swabbed). Automatic context inference from proprioceptive signals alone, mentioned as future work, would be necessary for truly autonomous deployment and is a non-trivial open problem.
  • The approach assumes the LSTM backbone, trained on a single baseline surface, captures transferable deformation dynamics. If the baseline surface is atypical, the backbone may encode surface-specific rather than general dynamics, and the context vector would need to compensate for a larger domain gap.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 7 minor

Summary. The paper presents a context-modulated LSTM framework for estimating tip-level contact forces during robotic swabbing with deformable tools. The core idea is to train a recurrent backbone on a baseline surface and then adapt to new surface/tool combinations by optimizing only a low-dimensional context vector via FiLM modulation, while keeping the backbone, FiLM projectors, and regression head frozen. Experiments span nine interaction regimes (three tools × three surfaces) with five-seed evaluation, trial-level data splits, input modality ablations, and a forgetting check. The approach is motivated by a real practical need: wrist-mounted force/torque sensing is decoupled from true contact forces by viscoelastic tool dynamics, and tool-integrated sensors are impractical for sterile/disposable swabbing.

Significance. The problem is well-motivated and the experimental design is thorough relative to the scope: nine interaction regimes, five seeds, trial-level splits, modality ablation, and an explicit catastrophic-forgetting check. The parameter-isolated adaptation idea (FiLM-modulated context vector, frozen backbone) is a reasonable application of prompt-tuning-style ideas to robotic force estimation. The FSR calibration procedure using a NIST-traceable texture analyzer and the sub-millisecond latency measurement add practical value. However, a central inconsistency in the experimental description (see Major Comment 1) must be resolved before the contribution can be properly assessed.

major comments (3)
  1. §V-D.1 states that few-shot adaptation involves '5 trials updating only context vector and readout,' but §IV-B and Eq. (4) explicitly state that the regression head g_ϕ is permanently frozen and only z_k is optimized. This is a direct contradiction. If g_ϕ (a two-layer MLP, 128→32→1, ~4,100+ parameters) is co-adapted during adaptation, the parameter-isolation claim is substantially weakened and the reported improvements may partly reflect readout re-fitting rather than context-vector modulation. The authors must clarify whether 'readout' in §V-D.1 refers loosely to the FiLM modulation output or to g_ϕ itself. If g_ϕ is indeed frozen (consistent with Eq. 4), the wording in §V-D.1 should be corrected. If g_ϕ is co-adapted, the central claim of minimal-parameter adaptation needs to be re-scoped accordingly.
  2. The dimensionality d_z of the context vector z_k is never reported, despite being a load-bearing parameter for the 'low-dimensional conditioning' claim (§IV-B, Eq. 4). The paper states d_z ≪ d_h = 128 but does not give the actual value. Without knowing d_z, the reader cannot assess whether the adapted parameter count is genuinely small relative to the backbone, nor whether the analogy to VPT/L2P is apt. Please report d_z and justify the choice.
  3. Table IV and the abstract headline the 'up to 63%' improvement figure, which is cherry-picked from the best-performing regime (Viscoelastic Composite, Standard tool: 61.8%; Hard tool: 62.2%). The improvement range across all nine regimes is 17.7–62.2%. The abstract and conclusion should report the full range rather than only the maximum, to give a representative picture.
minor comments (7)
  1. The abstract and conclusion should report the full improvement range (17.7–62.2%) rather than only 'up to 63%' to give a representative picture.
  2. Table II shows RMSE increasing from 43.22 (10% data) to 50.23 (15% data) before decreasing. The text attributes this to insufficient variance in the initial 5 trials, but this explanation is not tested. A brief note on whether this pattern is stable across seeds would help.
  3. §IV-B: The context bank Z = {z_0, z_1, ..., z_K} is mentioned but it is unclear how K is determined or how many domains were used in total. Please clarify.
  4. Fig. 3 caption mentions 'N=14' but the figure itself is not clearly labeled with axis units. Please add explicit axis labels (ADC units for the x-axis, count/density for the y-axis).
  5. The Acknowledgment section mentions use of Grammarly and Adobe Photoshop AI for figure editing. This is fine but should be verified against the journal's policies on AI tool disclosure.
  6. Reference [28] cites a YouTube video from 'ABC Research Laboratories' for environmental swabbing protocol. A more authoritative or peer-reviewed source for the swabbing protocol would strengthen the methodology.
  7. §III: The temporal window length T is mentioned as a model parameter but its value is not reported in the main text (only that the model captures 'up to 2 s' of history). Please state T explicitly.

Simulated Author's Rebuttal

3 responses · 0 unresolved

We thank the referee for a careful reading and for identifying a genuine inconsistency in the experimental description. All three major comments are well-taken. The contradiction regarding whether the regression head g_ϕ is co-adapted during few-shot adaptation arises from imprecise wording in §V-D.1; the actual experimental protocol is consistent with Eq. (4)—only z_k is optimized, and g_ϕ remains frozen. We will correct the wording accordingly. We will also report d_z explicitly and revise the abstract/conclusion to present the full improvement range rather than only the maximum.

read point-by-point responses
  1. Referee: §V-D.1 states that few-shot adaptation involves '5 trials updating only context vector and readout,' but §IV-B and Eq. (4) explicitly state that the regression head g_ϕ is permanently frozen and only z_k is optimized. This is a direct contradiction.

    Authors: The referee is correct that this is a contradiction, and we acknowledge it as an error in the manuscript text. The actual experimental protocol is consistent with §IV-B and Eq. (4): during few-shot adaptation, only the context vector z_k is optimized, while the LSTM backbone θ_enc, the FiLM projectors γ(·) and β(·), and the regression head g_ϕ are all permanently frozen. The phrase 'context vector and readout' in §V-D.1 was intended to refer loosely to the FiLM-modulated output that is then passed through the frozen readout, but this wording is imprecise and misleading. We will revise §V-D.1 to state unambiguously that '5 trials updating only the context vector z_k, with all other parameters—including the regression head g_ϕ—frozen.' This correction makes the experimental description fully consistent with Eq. (4) and the parameter-isolation claim. No re-scoping of the central claim is needed because the experiments were conducted as described in §IV-B; only the prose in §V-D.1 was erroneous. revision: yes

  2. Referee: The dimensionality d_z of the context vector z_k is never reported, despite being a load-bearing parameter for the 'low-dimensional conditioning' claim.

    Authors: We agree that d_z should be explicitly reported. In our experiments, d_z = 8, yielding a total of 8 adapted parameters per interaction regime (the FiLM projectors γ and β are frozen after pretraining, so they are not part of the adapted parameter count). This represents approximately 0.013% of the backbone parameters (60,545). We chose d_z = 8 based on preliminary experiments showing that values in the range 4–16 performed comparably, while d_z = 8 provided a good balance between expressiveness and minimal adaptation footprint. We will add this value and justification to §IV-B, and will also include the explicit adapted parameter count in the text so readers can directly assess the parameter-isolation claim relative to the backbone. revision: yes

  3. Referee: Table IV and the abstract headline the 'up to 63%' improvement figure, which is cherry-picked from the best-performing regime. The improvement range across all nine regimes is 17.7–62.2%. The abstract and conclusion should report the full range rather than only the maximum.

    Authors: This is a fair point. Reporting only the maximum improvement does not give a representative picture of performance across the nine regimes. We will revise the abstract to state 'reducing zero-shot estimation error by 17.7–62.2% across nine interaction regimes' and will make a corresponding change in the conclusion. The body text in §V-D already reports the full range ('18–63%'), but we will ensure consistency by using the precise range throughout. revision: yes

Circularity Check

0 steps flagged

No significant circularity found; the derivation is self-contained with one minor self-citation that is not load-bearing for the central claim.

full rationale

The paper's central claim is that parameter-isolated few-shot adaptation (optimizing only the context vector z_k while freezing the LSTM backbone, FiLM projectors, and regression head) reduces force estimation error under domain shift without catastrophic forgetting. Walking the derivation chain: (1) The LSTM backbone is selected via a comparative benchmark against four alternative architectures on held-out trials (Table I) — this is an empirical evaluation, not a circular definition. (2) The FiLM modulation mechanism (Eq. 3) is a standard conditioning technique cited to Perez et al. [34], an independent external source. (3) The few-shot adaptation objective (Eq. 4) optimizes z_k on a support set S_k and is evaluated on separate trials — the optimization target and evaluation target are distinct, so the reported improvements are not forced by construction. (4) The 'no catastrophic forgetting' result (Table IV, Wood retained row) is a direct consequence of freezing shared parameters, which is structurally guaranteed by the method design and verified empirically — this is a legitimate architectural property, not a circular restatement. The skeptic's concern about a possible contradiction between §IV-B (which states the regression head ϕ is 'permanently frozen') and §V-D.1 (which says adaptation involves 'updating only context vector and readout') is a correctness/consistency concern, not a circularity issue. The phrase 'readout' in §V-D.1 is ambiguous but does not create a situation where a prediction reduces to its inputs by construction. Self-citations [6] and [8] appear in the related work and motivation sections, not as load-bearing justifications for the mathematical framework or experimental claims. The framework's components (LSTM, FiLM, frozen-backbone adaptation) are all standard techniques applied to a new domain, and the experimental validation uses independent train/test splits across nine physical regimes. No step in the derivation chain reduces to its own inputs by definition or by fitted-parameter renaming.

Axiom & Free-Parameter Ledger

6 free parameters · 4 axioms · 1 invented entities

The paper's parameter count is modest and mostly standard supervised learning. The main concern is the unreported d_z, which is the single most important free parameter for the adaptation claim. The axiom that material shifts are low-rank in latent space is the core untested assumption.

free parameters (6)
  • LSTM backbone parameters θ_enc = 60,545 params
    Trained on baseline wood surface data; standard supervised learning, not ad hoc.
  • Regression head parameters ϕ = Not specified exactly
    Two-layer FFN (32-unit + ReLU); trained jointly with θ_enc.
  • FiLM projector parameters (γ, β) = Not specified
    Two-layer MLPs (d_z → 64 → d_h); trained during pretraining then frozen.
  • Context vector z_k per surface-tool pair = Not specified
    Optimized per new domain via few-shot adaptation (5 trials). This is the central adaptation mechanism. Dimensionality d_z is not reported.
  • Temporal window length T = Not specified
    Mentioned as 'up to 2 s' for stress relaxation but exact value used for training is not stated.
  • 5th-order polynomial FSR calibration coefficients = RMSE < 0.08 N
    Fitted to NIST-traceable Texture Analyzer data; standard calibration, not a model free parameter per se.
axioms (4)
  • domain assumption Contact force can be modeled as a deterministic function of temporal proprioceptive history and a low-dimensional context: y_t = f_θ(x_{t-T:t}, z_k)
    Section III, Problem Formulation. This assumes the 24-dim proprioceptive vector contains sufficient information to reconstruct tip force, which is supported by the ablation (Table III) but not proven.
  • ad hoc to paper A single low-dimensional context vector z_k is sufficient to capture cross-domain variation in stiffness, friction, and damping
    Section IV-B. The dimensionality d_z is not reported. The paper assumes material property shifts are low-rank in latent space.
  • domain assumption The FSR provides accurate ground-truth force labels during training
    Section III. Calibration RMSE < 0.08 N is reported, but FSR drift under repeated moist swabbing contact is not discussed.
  • domain assumption The training trajectory excites all relevant viscoelastic deformation modes
    Section III. 'Predefined motion parameters designed to excite viscoelastic and hysteretic deformation modes' — no systematic verification of trajectory coverage is provided.
invented entities (1)
  • Context bank Z = {z_0, z_1, ..., z_K} independent evidence
    purpose: Stores per-domain context embeddings for inference-time selection
    The context bank is a data structure, not a physical entity. Its entries are empirically validated: each z_k is optimized on real swabbing data and evaluated on held-out trials (Table IV). The falsifiable handle is that a wrong z_k selection should degrade performance, which is implicitly tested by the zero-shot baseline.

pith-pipeline@v1.1.0-glm · 15287 in / 3011 out tokens · 607596 ms · 2026-07-09T06:24:18.319275+00:00 · methodology

0 comments
read the original abstract

Robotic surface swabbing requires sustained interaction between a compliant tool and heterogeneous environments, where accurate estimation of tip-level contact force is critical for consistent sampling performance. However, deformable tool dynamics introduce nonlinear viscoelastic hysteresis that decouples wrist-mounted force measurements from true contact forces, while tool-integrated sensors are impractical for deployment due to sterility and disposability constraints. This paper presents a data-driven framework for contact force estimation in Deformable Tool Manipulation (DTM) that leverages proprioceptive sensing without requiring explicit physical models or permanent embedded sensing hardware at the tool tip. A recurrent architecture is first identified through a comparative evaluation of temporal models, where a compact LSTM achieves the lowest estimation error and sub-millisecond inference latency. To address generalization across unseen surfaces and tool compliance conditions, we introduce a parameter-isolated few-shot adaptation strategy that augments a frozen recurrent backbone with low-dimensional context embeddings using feature-wise linear modulation (FiLM). Experiments on a UR5e platform across nine tool-surface interaction regimes demonstrate that the proposed approach significantly improves robustness under domain shift, reducing zero-shot estimation error by up to 63\% while preserving baseline performance without catastrophic forgetting. These results show that separating shared deformation-history dynamics from domain-specific conditioning enables reliable force estimation for DTM in non-stationary environments.

Figures

Figures reproduced from arXiv: 2607.07574 by Chaitainya Kuppar Reddy, Dongyi Wang, Siavash Mahmoudi, Yang Tian.

Figure 1
Figure 1. Figure 1: Force transmission dynamics. (a) Rigid tools show direct corre [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Figure 2: Overview of the proposed force estimation pipeline: robot proprioceptive states [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Figure 3: LSTM error residual distribution on the validation set ( [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figure 4
Figure 4. Figure 4: Architecture comparison on 14 unseen trials. Top: mean predicted [PITH_FULL_IMAGE:figures/full_fig_p006_4.png] view at source ↗
Figure 5
Figure 5. Figure 5: Experimental conditions used to evaluate surface- and tool-induced domain shifts. (a) Viscoelastic composite surface exhibiting high damping [PITH_FULL_IMAGE:figures/full_fig_p007_5.png] view at source ↗

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

38 extracted references · 38 canonical work pages · 5 internal anchors

  1. [1]

    Chal- lenges and outlook in robotic manipulation of deformable objects,

    J. Zhu, A. Cherubini, C. Dune, D. Navarro-Alarcon, F. Alambeigi, D. Berenson, F. Ficuciello, K. Harada, J. Kober, X. Liet al., “Chal- lenges and outlook in robotic manipulation of deformable objects,” IEEE Robotics & Automation Magazine, vol. 29, no. 3, pp. 67–77, 2022

  2. [2]

    Modeling, learning, perception, and control methods for deformable object manipulation,

    H. Yin, A. Varava, and D. Kragic, “Modeling, learning, perception, and control methods for deformable object manipulation,”Science Robotics, vol. 6, no. 54, p. eabd8803, 2021

  3. [3]

    Towards contact point and surface normal estimation for control of flexible tool,

    C. Sloth, A. Kramberger, E. L. Diget, and I. Iturrate, “Towards contact point and surface normal estimation for control of flexible tool,” in 2022 American Control Conference (ACC). IEEE, 2022, pp. 500– 505

  4. [4]

    A fundamental limitation on the control of end-point force in a very flexible single-link arm,

    A. Bazaei and M. Moallem, “A fundamental limitation on the control of end-point force in a very flexible single-link arm,”Journal of Vibration and Control, vol. 18, no. 8, pp. 1207–1220, 2012

  5. [5]

    Stark: A unified framework for strongly coupled simulation of rigid and deformable bodies with frictional contact,

    J. A. Fern ´andez-Fern´andez, R. Lange, S. Laible, K. O. Arras, and J. Bender, “Stark: A unified framework for strongly coupled simulation of rigid and deformable bodies with frictional contact,” in2024 IEEE International Conference on Robotics and Automation (ICRA). IEEE, 2024, pp. 16 888–16 894

  6. [6]

    Data-Driven Contact-Aware Control Method for Real-Time Deformable Tool Manipulation: A Case Study in the Environmental Swabbing

    S. Mahmoudi, A. Davar, and D. Wang, “Data-driven contact- aware control method for real-time deformable tool manipula- tion: A case study in the environmental swabbing,”arXiv preprint arXiv:2503.21491, 2025

  7. [7]

    Prosip: Proba- bilistic surface interaction primitives for learning of robotic cleaning of edges,

    C. Unger, C. Hartl-Nesic, M. N. Vu, and A. Kugi, “Prosip: Proba- bilistic surface interaction primitives for learning of robotic cleaning of edges,” in2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS). IEEE, 2024, pp. 5956–5963

  8. [8]

    Evaluation of robotic swabbing and fluorescent sensing to monitor the hygiene of food contact surfaces,

    S. Mahmoudi, C. Griscom, P. Sohrabipour, Y . Tian, C. Pallerla, P. Crandall, and D. Wang, “Evaluation of robotic swabbing and fluorescent sensing to monitor the hygiene of food contact surfaces,” Foods, vol. 14, no. 19, p. 3311, 2025

  9. [9]

    SCCRUB: Surface Cleaning Compliant Robot Utilizing Bristles

    J. F. Kowalewski, K. Hajjafar, A. Ugent, and J. I. Lipton, “Sccrub: Surface cleaning compliant robot utilizing bristles,”arXiv preprint arXiv:2507.06053, 2025

  10. [10]

    Parametric smoothing model for visco-elastic polishing tools,

    D. W. Kim, W. H. Park, H. K. An, and J. H. Burge, “Parametric smoothing model for visco-elastic polishing tools,”Optics express, vol. 18, no. 21, pp. 22 515–22 526, 2010

  11. [11]

    Optimal force- tracking control of a compliant polishing end-effector with flexible elastic actuator,

    D. Shin, M. Lee, H. Kim, D. Kim, S. Yoo, and T. Kim, “Optimal force- tracking control of a compliant polishing end-effector with flexible elastic actuator,”International Journal of Control, Automation and Systems, vol. 23, no. 8, pp. 2372–2382, 2025

  12. [12]

    A survey on imitation learning for contact-rich tasks in robotics,

    T. Tsuji, Y . Kato, G. Solak, H. Zhang, T. Petri ˇc, F. Nori, and A. Ajoudani, “A survey on imitation learning for contact-rich tasks in robotics,”arXiv e-prints, pp. arXiv–2506, 2025

  13. [13]

    Fine robotic manipulation without force/torque sensor,

    S. Shan and Q.-C. Pham, “Fine robotic manipulation without force/torque sensor,”IEEE Robotics and Automation Letters, vol. 9, no. 2, pp. 1206–1213, 2023

  14. [14]

    Domain randomization for transferring deep neural networks from simulation to the real world,

    J. Tobin, R. Fong, A. Ray, J. Schneider, W. Zaremba, and P. Abbeel, “Domain randomization for transferring deep neural networks from simulation to the real world,” in2017 IEEE/RSJ international con- ference on intelligent robots and systems (IROS). IEEE, 2017, pp. 23–30

  15. [15]

    Mitigating catas- trophic forgetting in robot continual learning: A guided policy search approach enhanced with memory-aware synapses,

    Q. Dong, P. Zeng, Y . He, G. Wan, and X. Dong, “Mitigating catas- trophic forgetting in robot continual learning: A guided policy search approach enhanced with memory-aware synapses,”IEEE Robotics and Automation Letters, 2024

  16. [16]

    Modeling of deformable objects for robotic manipulation: A tutorial and review,

    V . E. Arriola-Rios, P. Guler, F. Ficuciello, D. Kragic, B. Siciliano, and J. L. Wyatt, “Modeling of deformable objects for robotic manipulation: A tutorial and review,”Frontiers in Robotics and AI, vol. 7, p. 82, 2020

  17. [17]

    Model-based vari- able impedance learning control for robotic manipulation,

    A. S. Anand, J. T. Gravdahl, and F. J. Abu-Dakka, “Model-based vari- able impedance learning control for robotic manipulation,”Robotics and Autonomous Systems, vol. 170, p. 104531, 2023

  18. [18]

    Making sense of vision and touch: Self- supervised learning of multimodal representations for contact-rich tasks,

    M. A. Lee, Y . Zhu, K. Srinivasan, P. Shah, S. Savarese, L. Fei-Fei, A. Garg, and J. Bohg, “Making sense of vision and touch: Self- supervised learning of multimodal representations for contact-rich tasks,” in2019 International conference on robotics and automation (ICRA). IEEE, 2019, pp. 8943–8950

  19. [19]

    Learning the signatures of the human grasp using a scalable tactile glove,

    S. Sundaram, P. Kellnhofer, Y . Li, J.-Y . Zhu, A. Torralba, and W. Ma- tusik, “Learning the signatures of the human grasp using a scalable tactile glove,”Nature, vol. 569, no. 7758, pp. 698–702, 2019

  20. [20]

    Overcoming catastrophic forgetting in neural networks,

    J. Kirkpatrick, R. Pascanu, N. Rabinowitz, J. Veness, G. Desjardins, A. A. Rusu, K. Milan, J. Quan, T. Ramalho, A. Grabska-Barwinska et al., “Overcoming catastrophic forgetting in neural networks,”Pro- ceedings of the national academy of sciences, vol. 114, no. 13, pp. 3521–3526, 2017

  21. [21]

    Model-agnostic meta-learning for fast adaptation of deep networks,

    C. Finn, P. Abbeel, and S. Levine, “Model-agnostic meta-learning for fast adaptation of deep networks,” inInternational conference on machine learning. PMLR, 2017, pp. 1126–1135

  22. [22]

    Few-shot Adaptation for Manipulating Granular Materials Under Domain Shift

    Y . Zhu, P. Thangeda, M. Ornik, and K. Hauser, “Few-shot adaptation for manipulating granular materials under domain shift,”arXiv preprint arXiv:2303.02893, 2023

  23. [23]

    Continual lifelong learning with neural networks: A review,

    G. I. Parisi, R. Kemker, J. L. Part, C. Kanan, and S. Wermter, “Continual lifelong learning with neural networks: A review,”Neural networks, vol. 113, pp. 54–71, 2019

  24. [24]

    Time-series data- driven three dimensional shape control of deformable linear objects using a dual-arm robot with dynamic model updating,

    J. Choi, M. H. Gebrezgiher, D. Lee, and A. Hong, “Time-series data- driven three dimensional shape control of deformable linear objects using a dual-arm robot with dynamic model updating,”IEEE Robotics and Automation Letters, 2026

  25. [25]

    Visual prompt tuning,

    M. Jia, L. Tang, B.-C. Chen, C. Cardie, S. Belongie, B. Hariharan, and S.-N. Lim, “Visual prompt tuning,” inEuropean conference on computer vision. Springer, 2022, pp. 709–727

  26. [26]

    Learning to prompt for continual learning,

    Z. Wang, Z. Zhang, C.-Y . Lee, H. Zhang, R. Sun, X. Ren, G. Su, V . Perot, J. Dy, and T. Pfister, “Learning to prompt for continual learning,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 139–149

  27. [27]

    Global context-aware attention lstm networks for 3d action recognition,

    J. Liu, G. Wang, P. Hu, L.-Y . Duan, and A. C. Kot, “Global context-aware attention lstm networks for 3d action recognition,” in Proceedings of the IEEE conference on computer vision and pattern recognition, 2017, pp. 1647–1656

  28. [28]

    Abc research laboratories,

    “Abc research laboratories,” https://www.youtube.com/watch?v=tXXk SHbL8DE, 2024, environmental Swabbing How-To, YouTube video. (Accessed on 12 Sep 2025.)

  29. [29]

    Temporal convolutional networks applied to energy-related time series forecasting,

    P. Lara-Ben ´ıtez, M. Carranza-Garc´ıa, J. M. Luna-Romera, and J. C. Riquelme, “Temporal convolutional networks applied to energy-related time series forecasting,”applied sciences, vol. 10, no. 7, p. 2322, 2020

  30. [30]

    Long short-term memory,

    A. Graves, “Long short-term memory,”Supervised sequence labelling with recurrent neural networks, pp. 37–45, 2012

  31. [31]

    Learning to forget: Continual prediction with lstm,

    F. A. Gers, J. Schmidhuber, and F. Cummins, “Learning to forget: Continual prediction with lstm,”Neural computation, vol. 12, no. 10, pp. 2451–2471, 2000

  32. [32]

    A physics-guided machine learning model for predicting viscoelasticity of solids at large deformation,

    B. Qin and Z. Zhong, “A physics-guided machine learning model for predicting viscoelasticity of solids at large deformation,”Polymers, vol. 16, no. 22, p. 3222, 2024

  33. [33]

    Development of lstm networks for predicting viscoplas- ticity with effects of deformation, strain rate, and temperature history,

    L. Benabou, “Development of lstm networks for predicting viscoplas- ticity with effects of deformation, strain rate, and temperature history,” Journal of Applied Mechanics, vol. 88, no. 7, p. 071008, 2021

  34. [34]

    Film: Visual reasoning with a general conditioning layer,

    E. Perez, F. Strub, H. De Vries, V . Dumoulin, and A. Courville, “Film: Visual reasoning with a general conditioning layer,” inProceedings of the AAAI conference on artificial intelligence, vol. 32, no. 1, 2018

  35. [35]

    Continual learning with hypernetworks

    J. V on Oswald, C. Henning, B. F. Grewe, and J. Sacramento, “Contin- ual learning with hypernetworks,”arXiv preprint arXiv:1906.00695, 2019

  36. [36]

    Towards uncovering feature extraction from temporal signals in deep cnn: the ecg case study,

    J. Ferretti, P. Barbiero, V . Randazzo, G. Cirrincione, and E. Pasero, “Towards uncovering feature extraction from temporal signals in deep cnn: the ecg case study,” in2020 international joint conference on neural networks (IJCNN). IEEE, 2020, pp. 1–7

  37. [37]

    An Empirical Evaluation of Generic Convolutional and Recurrent Networks for Sequence Modeling

    S. Bai, J. Z. Kolter, and V . Koltun, “An empirical evaluation of generic convolutional and recurrent networks for sequence modeling,” arXiv:1803.01271, 2018

  38. [38]

    A transformer-based framework for multivariate time series representation learning,

    G. Zerveas, S. Jayaraman, D. Patel, A. Bhamidipaty, and C. Eickhoff, “A transformer-based framework for multivariate time series representation learning,” inProceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery & Data Mining, ser. KDD ’21. New York, NY , USA: Association for Computing Machinery, 2021, p. 2114–2124. [Online]. Available: http...