[code](https://github.com/CharlieSCC/alpha/blob/aa850e2be4ddf740e7e118a9178056e8aea4cef2/alpha/model/THGNN/dataset.py#L55 ) `data = self.factor_data[:, idx: idx + self.look_back_window, :]` shouldn't be `date = self.trade_dates.iloc[idx+self.look_back_window]` instead of `date = self.trade_dates.iloc[idx]`? Is the training window set with future data?
code
data = self.factor_data[:, idx: idx + self.look_back_window, :]shouldn't be
date = self.trade_dates.iloc[idx+self.look_back_window]instead of
date = self.trade_dates.iloc[idx]?Is the training window set with future data?