← Latest papers
💬 NLP

Beyond Uniform Tokens: Adaptive Compression for Time Series Language Models

This paper proposes an adaptive token compression framework for time series language models that leverages the distinct spectral properties of time series data and the diminishing influence of prompts across layers to achieve significant inference acceleration and performance improvements.

Original authors: Jialin Gan, Xin Qiu, Guangzhe Chen, Xue Wang

Published 2026-06-12
📖 4 min read☕ Coffee break read

Original authors: Jialin Gan, Xin Qiu, Guangzhe Chen, Xue Wang

Original paper licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). This is an AI-generated explanation of the paper below. It is not written or endorsed by the authors. For technical accuracy, refer to the original paper. Read full disclaimer

Imagine you have a very smart, but slightly overworked, assistant (the Large Language Model or LLM) who is trying to understand two very different things at the same time: a long, complex weather report (the Time Series) and a set of instructions written on a sticky note (the Prompt).

Usually, this assistant treats every single word in the weather report and every single word in the instructions as equally important. They process them all at the same speed, one by one. The paper argues that this is a waste of time and energy.

Here is the simple breakdown of what the authors discovered and built:

1. The Problem: "One Size Fits All" is Wasteful

The authors realized that the two types of information behave very differently:

  • The Weather Report (Time Series): It's full of patterns. Some parts are just background noise or repetitive loops (like the sun rising every day). Other parts are the critical "plot twists" (like a sudden storm). Treating the repetitive loops with the same intensity as the storm is inefficient.
  • The Sticky Note (Prompt): The instructions are crucial at the very beginning to tell the assistant what to do. But as the assistant starts thinking and analyzing the data, they don't need to keep reading the whole sticky note over and over again. The instructions get "absorbed" quickly, and keeping them in the working memory for the rest of the process is just clutter.

2. The Solution: "TokenDecouple"

The team built a new system called TokenDecouple that handles these two inputs differently, like a smart traffic manager directing two different types of cars.

Part A: Compressing the Weather Report (Frequency-Domain Merging)

Instead of looking at the weather report second-by-second (time-domain), the system looks at it like a music equalizer (frequency-domain).

  • The Analogy: Imagine a song. Most of the time, it's just a steady drumbeat (redundant). Occasionally, there's a solo guitar riff (critical information).
  • The Fix: The system scans the "equalizer." It sees that many "notes" (tokens) are just repeating the same drumbeat. It groups these repetitive notes together and merges them into a single, representative note. It keeps the "guitar solos" (the critical frequencies) separate and untouched.
  • The Result: The assistant has to read a much shorter, cleaner version of the weather report, but it hasn't lost the important details.

Part B: Shrinking the Sticky Note (Pyramidal Decay)

The system also realized that the instructions don't need to stay big forever.

  • The Analogy: Think of the instructions as a large map you use to start a journey. Once you know the destination and the route, you don't need to keep the whole giant map open on the table; you just need a tiny corner of it to remember the turn.
  • The Fix: As the assistant goes deeper into its thinking process (through the layers of the model), the system aggressively shrinks the sticky note.
    • Layer 1: Full map (100% of instructions).
    • Layer 2: Quarter of the map (25%).
    • Layer 3: A tiny corner (6%).
    • Deep Layers: Almost nothing (less than 1%).
  • The Result: The assistant stops wasting brainpower re-reading instructions it has already understood.

3. The Outcome: Faster and Smarter

By doing these two things separately (decoupling them), the system achieved some impressive results:

  • Speed: It made the assistant 7.68 times faster in some cases.
  • Accuracy: Surprisingly, it didn't just get faster; it actually got better at tasks in about 78% of the tests.
  • Tasks: They tested this on predicting the future (forecasting), finding mistakes (anomaly detection), filling in missing data (imputation), and sorting things into categories (classification).

Summary

The paper is essentially saying: "Stop treating every piece of data the same."

  • For numbers (time series), group the boring, repetitive parts together so you only focus on the interesting patterns.
  • For text (prompts), read the instructions once, learn them, and then let them fade away as you do the actual work.

This approach allows the AI to be much more efficient without losing its smarts, making it possible to run these powerful models on faster, cheaper hardware.

Drowning in papers in your field?

Get daily digests of the most novel papers matching your research keywords — with technical summaries, in your language.

Try Digest →