Simple Feed Forward is a simple neural network that forecasts probability distributions for the next forecast horizon values, given the preceding context length values.
This implementation relies on Torch.
Training parameters
The size of the batches to be used for training and prediction.
Default value is the number of batches for which on average each time step appears in one sample per epoch.
Using a fixed random seed allows for reproducible result.
Model parameters
Set the context length to the model's default value (context length = forecast horizon).
Normalize the layers' inputs by re-centering and re-scaling. This can make deep neural networks faster and more stable.
Number of nodes in each hidden layer. Specify one value per layer.