Papers
Topics
Authors
Recent
Search
2000 character limit reached

OccamVTS: Distilled Vision for Forecasting

Updated 7 July 2026
  • The paper introduces OccamVTS, a knowledge distillation framework that transfers useful low-level textural features from large vision models to lightweight student networks.
  • It employs a dual-pathway architecture combining temporal encoding and visual augmentation with pyramid-style alignment, correlation, and feature distillation losses.
  • Empirical results show that aggressive parameter compression improves forecasting performance across long-term, few-shot, and zero-shot scenarios by filtering out irrelevant high-level semantics.

OccamVTS is a knowledge distillation framework for time series forecasting that transfers predictive information from large vision models (LVMs) into lightweight student networks with approximately 1%1\% of the original parameters. The method is motivated by the observation that visual encoders can improve forecasting when time series are rendered as images, yet most of the transferred visual capacity is unnecessary or detrimental because time series align with low-level textural features rather than high-level semantics. OccamVTS therefore uses pre-trained LVMs as frozen privileged teachers and distills only the temporal and textural components that remain useful for forecasting, combining pyramid-style feature alignment with correlation and feature distillation losses (Lyu et al., 3 Aug 2025).

1. Research context and problem setting

Time series forecasting is fundamental to diverse applications, and a recent line of work applies LVMs to forecasting by converting numerical sequences into visual representations. The rationale is partly perceptual: humans often interpret time-series plots visually, identifying edges, textures, trends, and periodic structure from the curve morphology itself. In the same vein, modern vision backbones, including ViTs and CNNs pre-trained on ImageNet, are effective at extracting low-level textural features such as edges, frequency patterns, and gradients; these properties are also present in visualized time series, including recurrence plots and spectrograms. Prior works named in this context include TimesNet, VisionTS, and Time VLM, all of which convert numerical sequences into 2D “images” and fine-tune or adapt LVMs for improved forecasting accuracy (Lyu et al., 3 Aug 2025).

OccamVTS is formulated as a response to a specific inefficiency in that paradigm. The central claim is not that vision transfer is ineffective, but that its benefits are concentrated in a very small subspace of the teacher model. The framework reports that while vision models enhance forecasting performance, 99%99\% of their parameters are unnecessary for time series tasks, and that aggressive compression can improve accuracy by removing overfitting to irrelevant visual features. In this formulation, the teacher is treated as a source of privileged supervision rather than as the deployment model itself.

2. Cross-modal premise: low-level texture versus high-level semantics

A defining premise of OccamVTS is that time series are visually closer to repetitive textures than to semantically rich natural images. The supporting analysis uses t-SNE on MAE features extracted from ImageNet images and from benchmark time-series datasets including ECL, Weather, Electricity, and ETT. In that feature space, time-series plots cluster near images of repetitive textures such as meshes and curtains, while remaining far from semantically rich scenes such as waterbirds and parachutes (Lyu et al., 3 Aug 2025).

The reported conclusion is that LVM early layers, which act as edge and frequency detectors, align with time series, whereas deeper semantic features do not and can impair forecasting by overfitting to irrelevant concepts. This observation is structurally important because it changes the purpose of cross-modal transfer. Instead of adapting a full semantic vision model to a temporal task, OccamVTS isolates the low-level inductive bias that appears transferable and suppresses the higher-level representations that act as semantic noise.

A common misunderstanding in visually augmented forecasting is that stronger vision pretraining should monotonically improve downstream forecasting. OccamVTS explicitly reports the opposite: larger transferred semantic capacity can be counterproductive when the target signal is purely numerical and forecasting-relevant structure resides in edges, textures, and frequency components. The framework’s compression strategy is therefore not merely an efficiency measure; it is part of the predictive hypothesis.

3. Architecture and teacher–student pipeline

OccamVTS is a three-stage teacher–student distillation pipeline that transforms time series into dual representations, uses a frozen large vision backbone as a privileged teacher, and trains a tiny student with specialized distillation objectives (Lyu et al., 3 Aug 2025).

The cross-modal representation module has two pathways. The temporal pathway uses a 1D patch-embedding followed by a Transformer encoder to capture sequence patterns. The visual pathway performs “plot→image” augmentation through FFT, periodic encodings, 1D→2D convolutions, and bilinear interpolation. This dual design preserves direct temporal modeling while also exposing the series to visual feature extraction.

The teacher model is a large pre-trained vision network VT()V^T(\cdot), with examples including MAE-Base, CLIP, and ResNet-101. Teacher visual features are fused with temporal embeddings through cross-attention, after which the teacher generates forecasts YTY^T and attention maps PTP^T. The teacher remains frozen during training.

The student model uses a lightweight backbone VS()V^S(\cdot), with examples including Tiny-ViT, EfficientNet-B0, and MobileNet-V3. It shares the same fusion mechanism and forecasting head as the teacher but operates at reduced dimensionality. In the high-level training loop, the model computes temporal embeddings HtH_t, applies visual augmentation to obtain IvisI_{\mathrm{vis}}, forms fused teacher and student representations, predicts YpredTY^T_{\mathrm{pred}} and YpredSY^S_{\mathrm{pred}}, and optimizes a weighted sum of task and distillation losses. Student parameters and distillation parameters are updated, whereas the teacher remains fixed.

4. Multi-scale alignment and distillation objectives

The technical core of OccamVTS lies in three complementary losses: pyramid-style feature alignment, correlation distillation, and feature distillation. These are combined with the forecasting task loss into a single objective (Lyu et al., 3 Aug 2025).

For pyramid-style feature alignment, the teacher and student provide multi-scale fused representations 99%99\%0 and 99%99\%1, where 99%99\%2 and 99%99\%3. Two learned projections,

99%99\%4

map teacher and student features into a shared latent space. The alignment loss is

99%99\%5

By matching multiple scales, the student is encouraged to preserve both fine- and coarse-grained structure.

Correlation distillation operates on self-attention maps 99%99\%6. With temperature 99%99\%7, the loss is

99%99\%8

This transfers temporal dependency patterns rather than only matching pointwise outputs.

Feature distillation compares the student’s aligned feature 99%99\%9 with the teacher’s fused feature VT()V^T(\cdot)0: VT()V^T(\cdot)1 The summary assigns distinct roles to the three terms: the MSE term preserves absolute magnitudes of predictive cues, the cosine term emphasizes directional alignment and filters scale noise, and the KL term aligns output distributions and further filters spurious semantic activations. Together, VT()V^T(\cdot)2 is described as transferring temporal and textural knowledge while suppressing high-level semantic noise.

The total objective is

VT()V^T(\cdot)3

with

VT()V^T(\cdot)4

The weights VT()V^T(\cdot)5 are learnable and are initialized, for example, to VT()V^T(\cdot)6.

5. Parameter compression, optimization, and data protocol

OccamVTS is explicitly designed around extreme compression. Teachers such as MAE-Huge are described as having VT()V^T(\cdot)7 and approximately VT()V^T(\cdot)8M parameters, while students based on Tiny-ViT, EfficientNet-B0, or MobileNet-V3 use VT()V^T(\cdot)9 and approximately YTY^T0–YTY^T1M parameters. By selecting YTY^T2 and pruning most attention heads and MLP channels, the student retains roughly YTY^T3 of the teacher’s weights (Lyu et al., 3 Aug 2025).

The summary also gives a mathematical intuition for this design: if the predictive subspace of dimension YTY^T4 captures at least YTY^T5 of the variance of the teacher’s fused features, then projection into that low-dimensional subspace preserves almost all forecasting information while discarding bulky semantic components. This is presented as intuition rather than as a proved theorem.

Training uses AdamW with initial learning rate YTY^T6 and weight decay YTY^T7, batch size YTY^T8, a frozen teacher, and updates to the student and distillation parameters. The temperature YTY^T9 is learned in PTP^T0 via a sigmoid transform, and early stopping is applied after PTP^T1 epochs of no validation improvement. The data protocol specifies PTP^T2 train, PTP^T3 validation, and PTP^T4 test for long-term forecasting; PTP^T5 train for few-shot experiments; and cross-dataset transfer for zero-shot evaluation.

These details matter because OccamVTS does not frame compression as post hoc model pruning. Instead, compression is embedded in the student architecture and in the distillation objective from the outset, with the teacher serving as a privileged but non-deployed source of supervision.

6. Empirical results, ablations, and implications

The reported empirical evaluation covers long-term, few-shot, zero-shot, and short-term forecasting. Long-term experiments use horizons PTP^T6 on ETTh1, ETTh2, ETTm1, ETTm2, Weather, Electricity, and Traffic, with MSE and MAE as metrics. Few-shot evaluation uses the same datasets with PTP^T7 training data. Zero-shot evaluation uses cross-transfer among ETT variants. Short-term evaluation uses the M4 competition with horizons PTP^T8–PTP^T9 and metrics SMAPE, MASE, and OWA (Lyu et al., 3 Aug 2025).

The main quantitative claims are specific. In long-term forecasting, OccamVTS achieves the best MSE on all seven datasets; on ETTh2, the reported result is VS()V^S(\cdot)0 versus PatchTST at VS()V^S(\cdot)1, corresponding to VS()V^S(\cdot)2. In few-shot evaluation, with only VS()V^S(\cdot)3 of the training data, the framework still outperforms strong baselines on VS()V^S(\cdot)4 datasets by VS()V^S(\cdot)5–VS()V^S(\cdot)6. In zero-shot transfer between ETT variants, the reported performance drop is less than VS()V^S(\cdot)7, compared with up to VS()V^S(\cdot)8 for other methods. In short-term forecasting on M4, the reported values are VS()V^S(\cdot)9 versus ETSformer at HtH_t0, and HtH_t1 versus HtH_t2.

Ablation studies are consistent with the dual-pathway and multi-loss design. Removing the visual pathway makes MSE HtH_t3 worse on Weather. Removing the temporal encoder yields HtH_t4 worse MSE. Dropping either HtH_t5 or HtH_t6 causes a HtH_t7–HtH_t8 loss in accuracy. Teacher-only models without a student and student-only models without knowledge distillation both underperform the full system by HtH_t9–IvisI_{\mathrm{vis}}0.

Efficiency results report teacher sizes up to IvisI_{\mathrm{vis}}1M parameters and student sizes between IvisI_{\mathrm{vis}}2M and IvisI_{\mathrm{vis}}3M, corresponding to approximately IvisI_{\mathrm{vis}}4–IvisI_{\mathrm{vis}}5 of teacher scale. Inference is IvisI_{\mathrm{vis}}6–IvisI_{\mathrm{vis}}7 faster on ETTh1, with less than IvisI_{\mathrm{vis}}8 memory reduction. The framework also reports the counterintuitive outcome that pruning IvisI_{\mathrm{vis}}9 of vision parameters improves generalization by removing overfit semantic features.

The broader implication is that the useful transferable content of vision pretraining for forecasting may be concentrated in low-level textural and frequency-sensitive representations rather than in category-level semantics. The summary also identifies limitations. OccamVTS still depends on a visual augmentation pipeline, which may need adaptation for irregularly sampled or multivariate series. It may incur information loss when rare high-level patterns become predictive in domain-specific tasks, with ECG wave shapes given as an example. Proposed future directions include distillation from multi-modal foundation models such as CLIP with text prompts, mixture-of-experts teachers specialized for different seasonalities or domains, and incorporation of additional modalities such as audio or tabular metadata through joint distillation.

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

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 OccamVTS.