Description Usage Arguments References
Builds a block of 'num_layers' pyramidal recurrent layers, which
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | layer_pyramidal_recurrent_block(
object,
units,
num_layers = 3,
cell_type = "LSTM",
activation = "tanh",
projection_activation = TRUE,
projection_batchnorm = TRUE,
kernel_initializer = "glorot_normal",
kernel_regularizer = NULL,
recurrent_activation = "sigmoid",
recurrent_initializer = "orthogonal",
recurrent_regularizer = NULL,
bias_initializer = "zeros",
bias_regularizer = NULL,
recurrent_dropout = 0,
name = NULL,
trainable = TRUE
)
|
units |
Number of hidden units for each layer in the block |
cell_type |
string denoting type of cell to use. default: 'LSTM' |
activation |
activation function for each layer |
https://arxiv.org/pdf/1808.09029.pdf
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.