Monkey Jump : MoE-Style PEFT for Efficient Multi-Task Learning
Nusrat Jahan Prottasha, Md Kowsher, Chun-Nam Yu, Chen Chen, Ozlem Garibay
TL;DR
Monkey Jump introduces gradient-free routing to parameter-efficient fine-tuning by treating existing transformer adapters as implicit experts and routing tokens via $k$-means centers updated with EMA. This preserves the fixed parameter budget of standard PEFT while achieving MoE-style specialization, avoiding the trainable routers and multi-expert activation costs of traditional MoE-PEFT. Theoretical results show token-wise routing increases expressivity and last-token representations maximize information for sequence-wise routing in causal transformers. Empirically, MJ matches or surpasses MoE-PEFT performance across 47 benchmarks spanning text, image, and video, with 7–29× fewer trainable parameters, up to 48% lower memory, and 1.5–2× faster training, demonstrating broad applicability and practical efficiency gains.
Abstract
Mixture-of-experts variants of parameter-efficient fine-tuning enable per-token specialization, but they introduce additional trainable routers and expert parameters, increasing memory usage and training cost. This undermines the core goal of parameter-efficient fine-tuning. We propose Monkey Jump, a method that brings mixture-of-experts-style specialization to parameter-efficient fine-tuning without introducing extra trainable parameters for experts or routers. Instead of adding new adapters as experts, Monkey Jump treats the adapters already present in each Transformer block (such as query, key, value, up, and down projections) as implicit experts and routes tokens among them. Routing is performed using k-means clustering with exponentially moving averaged cluster centers, requiring no gradients and no learned parameters. We theoretically show that token-wise routing increases expressivity and can outperform shared adapters by avoiding cancellation effects. Across multi-task experiments covering 14 text, 14 image, and 19 video benchmarks, Monkey Jump achieves competitive performance with mixture-of-experts-based parameter-efficient fine-tuning methods while using 7 to 29 times fewer trainable parameters, up to 48 percent lower memory consumption, and 1.5 to 2 times faster training. Monkey Jump is architecture-agnostic and can be applied to any adapter-based parameter-efficient fine-tuning method.
