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 MXNet.
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).
Distribution to fit.
Normalize the layers' inputs by re-centering and re-scaling. This can make deep neural networks faster and more stable.
Scale the network input by the data mean and the network output by its inverse.
Number of nodes in each hidden layer. Specify one value per layer.
Number of evaluation samples per time series, to increase parallelism during inference.