Papers
Topics
Authors
Recent
Search
2000 character limit reached

Domain Arithmetic: One-Shot VLA Adaptation under Environmental Shifts

Published 1 Jul 2026 in cs.RO, cs.CV, and cs.LG | (2607.00666v1)

Abstract: Vision-Language-Action (VLA) models often fail to perform the same learned tasks under environmental shifts, such as changes in camera pose and shifts to a different but similar robot (e.g., from Panda to UR5e). Adapting these models to the shifted environment (i.e., target domain) often requires training on multiple demonstrations for each task, which are costly to collect. To reduce the burden of data curation and training, we propose an analogy-based method that adapts VLA models under environmental shifts through weight vector arithmetic with domain-specific information addition, named Domain ARiThmetic (DART). Unlike prior approaches, DART requires collecting only a single demonstration, enabling efficient adaptation. To accurately isolate domain-specific information for addition, DART performs subspace alignment between singular components in weight vectors to filter out noisy components. In both simulated and real-world experiments, DART outperforms existing VLA adaptation methods in one-shot scenarios across diverse visual and embodiment shifts. Code is available at https://github.com/snumprlab/dart.

Summary

  • The paper introduces DART, a novel method that leverages weight-space arithmetic to isolate domain-specific adaptation using only a single target demonstration.
  • It employs spectral subspace filtering and scaling to denoise update vectors, ensuring robust transfer of vision-language-action policies across varying conditions.
  • Experimental results reveal significant performance gains in both simulation and real-world robotics, demonstrating effective adaptation under visual and physical shifts.

Domain Arithmetic: One-Shot VLA Adaptation under Environmental Shifts

Introduction and Motivation

Vision-Language-Action (VLA) models are foundational for enabling robotic systems to interpret and execute language-driven tasks via visual inputs. However, empirical evidence shows that even robust, multi-task VLA policies exhibit severe performance degradation under environmental shifts, including changes in camera viewpoints, sensor setups, or embodiment transfers (e.g., from one robotic platform to another). The principal challenge is that adapting these models to new target domains typically incurs prohibitive data collection costs: existing methods require extensive expert demonstrations for each policy task in the new environment and limited-data adaptation (e.g., one-shot fine-tuning) generally fails to generalize across tasks.

This paper addresses this critical challenge by introducing an analogy-based adaptation methodโ€”Domain Arithmetic for One-Shot VLA adaptation (DART)โ€”which leverages weight-space arithmetic and subspace alignment to efficiently transfer domain-specific information using only a single target-domain demonstration. Figure 1

Figure 1: One-shot VLA adaptation under environmental shifts โ€” DART enables adaptation across domains with single demonstration data by extracting domain-specific directions in model parameter space.

Analysis of One-Shot Fine-Tuning and Update Vector Decomposition

Empirical analysis on the LIBERO suite and diverse VLA architectures demonstrates that standard one-shot fine-tuning yields strong adaptation to the target task, but fails to generalize to other tasks due to the adaptation being dominated by task-specific directions. Through subspace similarity measurements using SVD-based alignment metrics, the authors show that parameter updates (update-vectors) decompose into two nearly-orthogonal components: one capturing task-specific features and another encoding domain-specific shifts.

Additive composition experiments confirm that task and domain updates are linearly combinable. Specifically, by averaging update-vectors across tasks (task-prototype) and domains (domain-prototype), the sum of these prototypes closely reconstructs task-domain-specific adaptation vectors, validating the hypothesis of functional disentanglement in the weight space. Figure 2

Figure 2

Figure 3: Subspace alignment ฮณ(โ‹…,ฮ”m,tgt)\gamma(\cdot,\mathrm{\Delta}_{m,\text{tgt}}) reveals strong additive structure and alignment between task and domain update prototypes.

DART: Domain Arithmetic for One-Shot Adaptation

Building on the above analysis, DART formulates domain adaptation as an analogy in parameter space: given source (ฮธ0\theta_0), source fine-tuned (ฮธm,src\theta_{m,\text{src}}), and target fine-tuned (ฮธm,tgt\theta_{m,\text{tgt}}) models for a task Tm\mathcal{T}_m, DART extracts the domain vector as

ฮดtgt(l)=ฮ”m,tgt(l)โˆ’ฮ”m,src(l)\delta^{(l)}_\text{tgt} = \mathrm{\Delta}^{(l)}_{m,\text{tgt}} - \mathrm{\Delta}^{(l)}_{m,\text{src}}

for each layer ll, where ฮ”m,โ‹…(l)=ฮธm,โ‹…(l)โˆ’ฮธ0(l)\mathrm{\Delta}^{(l)}_{m,\cdot} = \theta^{(l)}_{m,\cdot} - \theta^{(l)}_0. This operation isolates the component in ฮธm,tgt\theta_{m,\text{tgt}} that is attributable to the domain shift, while removing (via subtraction) the task-specific direction represented in both the source- and target-domain updates.

To further denoise the extraction and prevent the injection of task-irrelevant artifacts, the authors propose two spectral filtering mechanisms:

  • Subspace Filtering: Aligns and suppresses basis vectors in the source update-vector that do not strongly align with the target, retaining only the mutually shared subspace directions.
  • Subspace Scaling: Down-weights or rejects domain vectors when the subspace alignment metric indicates low similarity, reducing the risk of noise propagation from misaligned updates.

The final adapted model is given by

ฮธโˆ—=ฮธ0+ฮฑโ‹…ฮด~tgt\theta^* = \theta_0 + \alpha \cdot \tilde{\delta}_\text{tgt}

where ฮธ0\theta_00 is a tunable adaptation strength and ฮธ0\theta_01 is the subspace-filtered and scaled domain vector. Figure 4

Figure 2: The DART domain adaptation pipeline utilizes a single demonstration from both source and target domains, performing update arithmetic and subspace operations to inject domain-specific knowledge.

Experimental Results

Simulation Benchmarks: Visual and Physical Shifts

DART is evaluated on established simulation benchmarks with diverse visual and physical shifts:

  • LIBERO:
    • Under viewpoint, lighting, and noise shifts, DART achieves average success improvements up to 24.6 percentage points above one-shot fine-tuning and outperforms prior adaptation baselines (e.g., FLA, RETAIN) across all settings.
    • DART demonstrates robust transfer across variations, maintaining composable multi-task behavior with a single demonstration.
  • MimicGen (Cross-Embodiment):
    • When transferring from Panda to UR5e robots, DART attains superior success and progress rates, indicating its applicability beyond pure visual adaptation to changes in hardware embodiment.
    • Figure 5
    • Figure 4: Evaluation setups span LIBERO with visual perturbations, MimicGen for cross-embodiment, and real robot deployment.

Real-World Robotics

In real-world settings, where only a single target domain demonstration per task is available due to cost, DART yields strong performance across all tested manipulation tasks. E.g., on a UR10e robot under severe camera viewpoint shift, DART achieves 81.7% average task success rate, while standard one-shot fine-tuning and parameter-merging baselines plateau at significantly lower rates. Figure 6

Figure 5: Real-world robot setup and rollouts โ€” DART adapts VLA policies to camera shifts with only a single demonstration under realistic sensor and embodiment conditions.

Ablation and Analysis

Ablation studies confirm that subspace filtering and scaling are both necessary for stable domain vector extraction, especially as update-vectors become increasingly noisy with limited fine-tuning steps. Furthermore, analyses show that merged domain vectors are composable: vectors from different domains can be added to adapt to multiple shifts, and forgetting on the source domain is minimal after adaptation. Figure 7

Figure 7

Figure 8: Performance as a function of the scaling coefficient ฮธ0\theta_02 demonstrates DARTโ€™s broad robustness.

Implications and Future Directions

The ability to efficiently adapt VLA models to new environments with only a single demonstration has substantial implications for practical robotics. DARTโ€™s insightsโ€”most notably, the nearly orthogonal decomposition of task and domain updatesโ€”indicate an underlying structure in deep model parameter spaces that is amenable to algebraic manipulation. This abstraction enables rapid adaptation, greater data efficiency, and furthers the generalization potential of VLA models.

Open questions for future work include extracting more precise domain vectors under extreme shifts, exploring hyperparameter-free, per-layer adaptive scaling, and investigating whether similar arithmetic operations extend to reasoning about higher-level factors of variation, such as affordances or interaction intents.

Conclusion

This work introduces DART, a one-shot, analogy-based domain adaptation method for VLA models via weight-space arithmetic and subspace alignment. Comprehensive experimental results demonstrate strong, scalable adaptation across visual and physical domainsโ€”both in simulation and on real hardwareโ€”using only a single demonstration per target environment. DART reveals additive, disentangled structure in VLA parameter updates and provides a data-minimal, architecture-agnostic framework for practical deployment of vision-language-action agents across novel domains.

(2607.00666)

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.

Tweets

Sign up for free to view the 1 tweet with 0 likes about this paper.