Papers
Topics
Authors
Recent
Search
2000 character limit reached

MOVE: Multidisciplinary Frameworks

Updated 3 July 2026
  • MOVE is a multifaceted term representing state-of-the-art frameworks and algorithms in computer vision, robotics, distributed systems, and smart contract security.
  • Various MOVE approaches employ specialized modules—such as vision encoders, motion-guided segmentation, adversarial losses, and automated refactoring—to enhance efficiency and performance.
  • Robust theoretical foundations and formal verification methods in MOVE applications ensure safety, consistency, and practical improvements across diverse modern computing systems.

MOVE is a term with multiple technical meanings across computer science, mathematics, robotics, vision, and smart contract security. This article focuses on representative state-of-the-art frameworks, algorithms, and theoretical concepts that bear the "MOVE" name or address the formal notion of “move” in modern systems, as supported in the cited research.

1. MOVE in Vision-Language Processing: Mixture-of-Vision-Encoders

MOVE (“Mixture-of-Vision-Encoders”) is a modular multimodal architecture for vision-language tasks that leverages multiple specialized pre-trained vision encoders rather than a single backbone. The system integrates:

  • A LLM—e.g., Qwen2.5.
  • A pool of domain-specialized vision encoders: InternViT (natural images), Texify (LaTeX images), and UniChart (charts/plots).
  • An MLP-based router network that, given a mean-pooled embedding from the smallest encoder (InternViT), selects the optimal expert for each input.
  • Lightweight adapter modules projecting the expert encoder's visual token output into the LLM embedding space.

Inference proceeds by calculating a distribution over experts for each image, running only the selected expert at full resolution, and passing the adapted tokens to the LLM alongside the question. This yields high token and compute efficiency (196–576 visual tokens per image). MOVE demonstrates strong performance on chart analysis (ChartQA), general VQA (GQA), and domain-specific tasks, matching or outperforming traditional slicing-based multi-encoder or single-encoder models while reducing computational and memory overhead. The architecture's token bottleneck and limited expert pool currently restrict performance on OCR tasks without a dedicated OCR encoder (Skripkin et al., 21 Feb 2025).

2. MOVE in Video Segmentation: Motion-Guided Few-Shot

MOVE here refers to a dataset and benchmark for motion-guided few-shot video object segmentation (FSVOS), shifting the focus from static object categories to spatiotemporal motion patterns. Key features:

  • 224 fine-grained motion categories, episode-based few-shot evaluation (2-way-1-shot and 5-way-1-shot), and comprehensive annotations.
  • Support–query pairs are defined by motion pattern rather than object class, enabling evaluation of generalization across motions.
  • The Decoupled Motion-Appearance Network (DMA) serves as a baseline, decoupling appearance and motion via mask pooling for appearance prototypes, 3D convolutions over frame differences for motion prototypes, and transformer-based fusion. Segmentation and auxiliary losses guide learning.
  • DMA achieves significant improvement over prior baselines—e.g., J=50.1% region similarity, T-Acc=98.6%, outperforming category-centric FSVOS methods, especially on cross-motion generalization.

Experimentally, MOVE exposes outstanding challenges for current models, particularly in fine-grained motion discrimination and background suppression. Future directions include decomposing actions into meta-motions, relational motion modeling, and enriched temporal representation (Ying et al., 29 Jul 2025).

3. MOVE in Object Segmentation: Unsupervised Movable Object Discovery

In computer vision, MOVE designates an unsupervised method for segmenting foreground objects based on a “movability” principle: any true foreground region, when shifted locally and inpainted with a generative background, produces a realistic composite only if the mask is accurate. The method comprises:

  • Frozen DINO/MAE features for patchwise embeddings.
  • A small learnable segmenter and adversarial discriminator.
  • Differentiable MAE-based inpainting for background completion.
  • Key loss terms: adversarial (real/fake discrimination on shifted composites), minimum-area (coverage regularization), and binarization (mask crispness).

MOVE achieves state-of-the-art results on multiple benchmarks:

  • DUTS-TE IoU = 0.713 (salient object segmentation).
  • VOC07 CorLoc = 76% (unsupervised single-object discovery).
  • COCO AP_50 = 19.0% (unsupervised detection (Bielski et al., 2022)).

Ablations confirm the criticality of the movability-induced adversarial loss, area and binarization regularizers, and MAE-based inpainting.

4. MOVE in Distributed Data Structures: Move Operations in CRDTs

Within CRDTs, "move" refers to an operation relocating a subtree or reordering elements in a replicated JSON tree while maintaining conflict-freedom under concurrent execution.

  • Each operation has a Lamport-timestamped ID; a move op specifies the ID of the element to move and the new parent.
  • The core invariant is acyclicity—cycles are rejected; among concurrent moves of the same element, only the highest-ID (by Lamport clock) survives.
  • The core merge algorithm, Restore–Apply–Reapply (RAR), ensures commutative, associative, and idempotent operation, guaranteeing strong convergence and consistency.
  • Optimizations (e.g., batch RAR, lifecycle tracking) minimize overhead to near-zero for non-move workloads and ~1–3x for heavy-move workloads.
  • A worked example illustrates elimination of cycles and deterministic resolving of concurrent moves, ensuring a single consistent tree state across replicas (Da et al., 2023).

5. MOVE in Robotic Manipulation: MOtion-Based Variability Enhancement

MOtion-Based Variability Enhancement (MOVE) is a technique in robot dataset collection that injects continuous object and camera motion during demonstrations. Instead of collecting each trajectory under a single, static configuration, the paradigm augments trajectories with sampled translations and rotations for both objects and camera, producing a diverse set of spatial contexts per episode:

  • Parameterization of motion is via Beta-distributed velocities and uniformly-sampled directions; positions, orientations, and camera views evolve dynamically.
  • Empirical results demonstrate significant improvement in spatial generalization: 39.1% mean task success (76.1% improvement over static), and 2–5× reduction in data requirements on tasks such as pick-and-place and assembly.
  • Real-world deployment confirms that, even at half the data budget, MOVE surpasses static collection (23.3% vs. 3.3% success at 35k timesteps).

Ablation shows that combined object and camera motion is critical for optimal generalization (Wang et al., 4 Dec 2025).

6. MOVE in Software Engineering: Automated Move Method Refactoring

MOVE also refers to a fully automated Move Method refactoring assistant (MM-assist), designed for large code bases (Java). The Move Method refactoring migrates a method from one class to another to improve cohesion and reduce coupling:

  • A pipeline combines IDE-based filtering, semantic code embeddings, LLM-driven suggestion, and static validation for hallucination filtering.
  • Embedding similarity identifies methods and target classes; a refactoring-aware retrieval augmented generation strategy is used to fit context limitations of LLMs.
  • Empirical evaluation on synthetic and real-world codebases demonstrates Recall@1 of 67% and Recall@3 of 75%, significantly surpassing prior baselines.
  • User studies report positive acceptance (82.8%) and practical integration in developer workflows.

Notably, the approach rigorously filters invalid, unbuildable, or non-existent class moves, addressing one of the chief failure modes of naive LLM-based refactoring systems (Batole et al., 26 Mar 2025).

7. Formal and Security Aspects of Move Programming Language

Finally, "Move" denotes a smart contract programming language and platform, designed with robust reference, type, and resource safety for digital assets:

  • The Move borrow checker formalizes a stack-based memory model with precise reference safety, enforcing exclusive &mut and safe &T references, as well as absence of leaks and dangling pointers (Blackshear et al., 2022).
  • Defense-in-depth runtime safety on Aptos layers dynamic (runtime) safety checks atop static verification, covering type/ability/resource safety and correcting or aborting execution whenever invariants are violated, even in the presence of static verifier bugs. Performance evaluations document <30% throughput loss, reduced to ∼10% with waivers and parallelization (Gao et al., 16 Jun 2026).
  • Formal verification frameworks for higher-order Move (with first-class imperative functions) provide SMT encodings of behavioral specifications, enabling compositional reasoning about function parameters, closures, and state transitions. This is achieved without the complexity of separation logic, leveraging Move’s static aliasing discipline (Grieskamp et al., 11 May 2026).
  • "Belobog" is a type-aware fuzzing framework for Move contracts, constructing a type graph from modules and mutating/generating well-typed transactions even under Move's linear resource constraints. The concolic executor integrates SMT solving to penetrate invariant guards and complex arithmetic, achieving exhaustive bug coverage on real-world incidents (Xia et al., 2 Dec 2025).
  • Robust safety for Move exploits a combination of closed-world invariant proving, escape analysis for reference leak prevention, and a formal framework that guarantees integrity invariants even against adversarially composed modules (Patrignani et al., 2021).

MOVE and "move" thus represent a diverse set of foundational concepts and robust frameworks spanning machine learning, computer vision, software engineering, distributed systems, and smart contract security. Each instance leverages rigorous theoretical foundations, specialized algorithms, and empirical validation in its respective domain.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

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

Follow Topic

Get notified by email when new papers are published related to MOVE.