I would like to predict multiple timesteps into the future. My current NN outputs a sparse classification of 0, 1 or 2.
Sparse classifications outputs via a SoftMax Dense layer with 3 neurons to correspond to the three categories mentioned above.
How would I shape the output layer (softmaxed Dense) to give me the ability to predict two timesteps into the future, while keeping the sparse categorical classes to only 3?
Right now if I set that Dense layer to have 6 neurons (3 classes * 2 timesteps) I get an output of a sparse categorical classification with 6 classes and 1 timestep.