Keraflow
Deep Learning for Python.
|
Densely connected highway network. More...
Public Member Functions | |
def | __init__ |
Densely connected highway network.
A natural extension of LSTMs to feedforward networks.
(nb_samples, input_dim)
(nb_samples, input_dim)
(input_dim, input_dim)
(input_dim,)
def keraflow.layers.core.Highway.__init__ | ( | self, | |
transform_bias = -2 , |
|||
init = 'glorot_uniform' , |
|||
activation = 'linear' , |
|||
bias = True , |
|||
kwargs | |||
) |
transform_bias | initial value for all elements of b_carry . |
init | str/function. Function to initialize trainable parameters. See Initializations. |
activation | str/function. Activation function applied on the output. See Activations. |
bias | boolean. Whether to include a bias (i.e. make the layer affine rather than linear). |
kwargs | see Layer.__init__. |