paper-with-me

Papers

Per-Axis Weight Deltas for Frequent Model Updates

2025-12-16 · Stefan Kuyumdzhiev, Radostin Cholakov arxiv

Serving many task-specialized LLM variants is often limited by the large size of fine-tuned checkpoints and the resulting cold-start latency. Since fine-tuned weights differ from their base model by relatively small structured residuals, a natural approach is to represent them as compressed deltas. We propose a simple 1-bit delta scheme that stores only the sign of the weight difference together with lightweight per-axis (row/column) FP16 scaling factors, learned from a small calibration set. This design preserves the compactness of 1-bit deltas while more accurately capturing variation across weight dimensions, leading to improved reconstruction quality over scalar alternatives. From a systems perspective, a streamlined loader that transfers packed deltas in a single operation per module reduces cold-start latency and storage overhead, with artifacts several times smaller than a full FP16 checkpoint. The method is drop-in, requires minimal calibration data, and maintains inference efficiency by avoiding dense reconstruction. Our experimental setup and source code are available at https://github.com/kuiumdjiev/Per-Axis-Weight-Deltas-for-Frequent-Model-Updates.

📄 PDF Abstract BibTeX arXiv:2512.19720

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

VisualDeltas: Learning Preferences from Visual Quality Perturbations

2026-03-07 · Hailiang Huang, Yihao Liu, Shengyue Guan, Haoze Li 외 arxiv

We present VisualDeltas, a lightweight preference-learning framework that extracts supervision from visual quality variations in multimodal data. By leveraging the systematic impact of image quality on visual perception …

Where Pretraining writes and Alignment reads: the asymmetry of Transformer weight space

2026-05-15 · Valeria Ruscio, Eli-Shaoul Khedouri, Keiran Thompson arxiv

Cross-entropy pretraining and preference alignment update the same transformer weights, but leave geometrically distinct traces. We characterise this asymmetry with a relative-subspace-fraction probe that tracks how weig…

RW-TTT: Batched Serving for Request-Owned Test-Time Training State

2026-05-27 · Jian Yang, Zhizhuo Kou, Yao Tian, Hao Zhang 외 arxiv

Test-time training (TTT) adapts an LLM during generation by reading and updating request-owned state, such as fast weights, low-rank deltas, or streaming learner state. This breaks batched LLM serving, which assumes shar…

Instruction-Level Weight Shaping: A Framework for Self-Improving AI Agents

2025-08-29 · Rimom Costa arxiv

Large language models (LLMs) are fluent but largely static after pre-training; new or shifting knowledge is typically added with retrieval-augmented generation (RAG) or fine-tuning. RAG raises latency and engineering ove…

Prompt Engineering

A Semantic-based Optimization Approach for Repairing LLMs: Case Study on Code Generation

2025-03-17 · Jian Gu, Aldeida Aleti, Chunyang Chen, Hongyu Zhang

Language Models (LMs) are widely used in software engineering for code generation, but they may produce code with errors. Rather than repairing the generated code, an alternative way is to address the underlying failures…

Code GenerationSpecificity