Closed AlexanderProchnow closed 9 months ago
Hello, thanks for your feedback. The point you raised is valid: our paper's description of C=1 is not accurate. Using the time indices as input features is a commonly adopted approach in related works such as DCRNN, Graph WaveNet, and STID. In our code, you can modify the input_dim
parameter to select which features to use. By default, we use all available features (following the code of the models mentioned above). We appreciate you bringing this issue to our attention so we can improve our explanation next time.
I noticed that the
input_dim
parameter in the STAEformer class as well as in the STAEformer.yaml is set to 3. However, in line 200 of STAEformer.py (x = x[..., : self.input_dim]
) we extract everything from the input up toinput_dim
, which would mean also the time of day and the day of week values. Afterwards we apply an input projection tox
, which in the paper is only applied to the traffic volume. I believeinput_dim=1
would therefore be correct?