Instead, always return (example, time, query_dim), and reshape to (example * time, 1, dim) in SatelliteTransformer.forward, just after going through the gsp_query_generator. But need to ensure we mask future "actual" data!
Then we can simply add in history (if we want it) in the calling code. And then reshape.
Instead, always return (example, time, query_dim), and reshape to (example * time, 1, dim) in
SatelliteTransformer.forward
, just after going through the gsp_query_generator. But need to ensure we mask future "actual" data!Then we can simply add in history (if we want it) in the calling code. And then reshape.
And do #144