KimMeen / Time-LLM

[ICLR 2024] Official implementation of " 🦙 Time-LLM: Time Series Forecasting by Reprogramming Large Language Models"
https://arxiv.org/abs/2310.01728
Apache License 2.0
1.46k stars 252 forks source link

Quetion about __len__ in data_loader.py #144

Open LeonardoKong opened 2 months ago

LeonardoKong commented 2 months ago

In line 105 of data_loader.py in the data_provider, why is there a multiplication by self.enc_in in the statement: "return (len(self.data_x) - self.seq_len - self.pred_len + 1) * self.enc_in" when calculating len?