Neural networks#
Neural networks learn flexible nonlinear maps, including recurrent forms for sequence structure in longer panels.
Pass any model string below as Arm(model=...). Extra names an optional dependency, Scaling flags whether predictors should be standardized, and Tunable counts the hyperparameters the search space exposes.
Model string |
Description |
Input |
Extra |
Scaling |
Recommended preprocessing |
Tunable |
|---|---|---|---|---|---|---|
|
Paper-faithful Density Hemisphere neural network with prior-DNN OOB volatility emphasis and OOB volatility rescaling. |
supervised |
|
no |
feature lags/trends are built before fitting; X and y are standardized inside each fit |
4 |
|
Torch-backed GRU regressor. |
supervised |
|
no |
handled internally: X and y are standardized inside each fit |
3 |
|
Bagged Hemisphere neural network with mean and variance heads. |
supervised |
|
no |
handled internally: X is standardized inside each fit |
3 |
|
Torch-backed LSTM regressor. |
supervised |
|
no |
handled internally: X and y are standardized inside each fit |
3 |
|
Torch-backed feed-forward multilayer perceptron regressor. |
supervised |
|
no |
handled internally: X and y are standardized inside each fit |
4 |
|
Torch-backed Transformer encoder regressor. |
supervised |
|
no |
handled internally: X and y are standardized inside each fit |
3 |
Reference#
Models reference page for
ModelSpec,ModelFit, and fit conventions.