Separated_GPD_SNN | R Documentation |
A parameter-separated self-normalizing network as a torch::nn_module
,
designed for generalized Pareto distribution parameter prediction.
Separated_GPD_SNN(
D_in,
Hidden_vect_scale = c(64, 64, 64),
Hidden_vect_shape = c(5, 3),
p_drop = 0.01
)
D_in |
the input size (i.e. the number of features), |
Hidden_vect_scale |
a vector of integers whose length determines the number of layers in the sub-network for the scale parameter and entries the number of neurons in each corresponding successive layer, |
Hidden_vect_shape |
a vector of integers whose length determines the number of layers in the sub-network for the shape parameter and entries the number of neurons in each corresponding successive layer, |
p_drop |
probability parameter for the |
The constructor allows specifying:
the input size (i.e. the number of features),
a vector of integers whose length determines the number of layers in the sub-network for the scale parameter and entries the number of neurons in each corresponding successive layer,
a vector of integers whose length determines the number of layers in the sub-network for the shape parameter and entries the number of neurons in each corresponding successive layer,
probability parameter for the alpha-dropout
before each hidden layer for regularization during training.
The specified parameter-separated SNN MLP GPD network as a torch::nn_module
.
Gunter Klambauer, Thomas Unterthiner, Andreas Mayr, Sepp Hochreiter. Self-Normalizing Neural Networks. Advances in Neural Information Processing Systems 30 (NIPS 2017), 2017.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.