7
$\begingroup$

So I was working on a multivariate time-series data, is it possible that I can impute or interpolate the missing data using transformer or pre-trained, fine-tuned LLMs?

Some insights about it please. example some transformer based models such as iTransformer etc. can do several tasks around time-series data similarly other LLM models also are fine-tuned for specifically for certain time-series based tasks.

So for imputation are there any such methods or techniques?

$\endgroup$
1
  • $\begingroup$ Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. $\endgroup$ Commented Sep 11 at 7:55

1 Answer 1

6
$\begingroup$

TL;DR

Yes. You can frame multivariate time-series imputation as a masked-prediction task and use a Transformer to reconstruct missing values.

If your data is small, structured, and fixed-length, start with interpolation or GRU/autoencoder methods.

Use Transformers when:

  • You need to capture long-range or cross-variable dependencies
  • Sampling is irregular or heterogeneous
  • You want to leverage transfer learning or pretrained representations

Longer answer

In practice, start with strong baselines (interpolation, Kalman filters, KNN/RandomForest, GRU-D/BRITS). Use Transformers when you have long-range dependencies, many variables, or irregular sampling and enough data.

When to use what
  • Simple and strong baselines

  • Sequence models built for missingness

    • GRU-D: learns decay toward empirical means for missing channels
      Paper: Che et al., 2018
    • BRITS: bidirectional RNN with consistency losses for imputation
      Paper: Cao et al., 2018
  • Transformer-style

    • Masked modeling: randomly mask observed values and train the model to reconstruct them
    • Works well for long horizons, many variables, or heterogeneous signals
    • Examples:
      • TST (Time Series Transformer): paper
      • TS2Vec (representation learning usable for imputation): paper
      • iTransformer (variable-wise attention)
    • Diffusion-style imputers for uncertainty:
      • CSDI (Conditional Score-based Diffusion for Imputation): paper
$\endgroup$

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.