Welcome to our Support Center

GRU

Description

Setup and add the gru layer into the model during the definition graph step. Type : polymorphic.

 

Input parameters

 

Model in : model architecture.

Parameters : layer parameters.

units : integer, dimensionality of the output space.
Β ActivationΒ :Β cluster,Β activation function to use.
Β Recurrent ActivationΒ :Β cluster,Β activation function to use for the recurrent step.
use bias? : boolean, whether the layer uses a bias vector.
Default value “True”.
Β Input Weight InitializerΒ :Β cluster,Β initializer for theΒ kernelΒ weights matrix, used for the linear transformation of the inputs.
Β Hidden Weight InitializerΒ :Β cluster,Β initializer for theΒ recurrent_kernelΒ weights matrix, used for the linear transformation of the recurrent state.
Β Bias InitializerΒ :Β cluster,Β initializer for the bias vector.
dropoutΒ : float, fraction of the units to drop for the linear transformation of the inputs.
Default value “0.0”.
recurrent dropout : float, fraction of the units to drop for the linear transformation of the recurrent state.
Default value “0.0”.
return sequences? : boolean, whether to return the last output in the output sequence, or the full sequence.
Default value “False”.
stateful?Β : boolean, if True, the last state for each sample at index i in a batch will be used as initial state for the sample of index i in the following batch.
Default value “False”.
Input Weight RegularizerΒ :Β cluster,Β regularizer function applied to theΒ kernelΒ weights matrix.
Β Hidden Weight RegularizerΒ :Β cluster,Β regularizer function applied to theΒ recurrent_kernelΒ weights matrix.
Β Bias RegularizerΒ :Β cluster,Β regularizer function applied to the bias vector.
Β training?Β :Β boolean, whether the layer is in training mode (can store data for backward).
Default value β€œTrue”.
Β store?Β :Β boolean, whether the layer stores the last iteration gradient (accessible via the β€œget_gradients” function).
Default value β€œFalse”.
Β update?Β :Β boolean, whether the layer’s variables should be updated during backward. Equivalent to freeze the layer.
Default value β€œTrue”.
Β lda coeff :Β float, defines the coefficient by which the loss derivative will be multiplied before being sent to the previous layer (since during the backward run we go backwards).
Default value β€œ1”.

 

name (optional) : string, name of the layer.

 

Output parameters

 

Model out : model architecture.

Dimension

Input shape

A 3D tensor, with shape : (batch, timesteps, features).

 

Output shape

3D tensor with shape :

  • If “return_sequences” = True : (batch_size, timesteps, units).
  • If “return_sequences” = False Β : (batch_size, units).

Example

All these exemples are snippets PNG, you can drop these Snippet onto the block diagram and get the depicted code added to your VI (Do not forget to install Deep Learning library to run it).

GRU layer

1 – Generate a set of data

We generate an array of data of type single and shape [batch_size = 10, timesteps = 7, features = 5].

2 – Define graph

First, we define the first layer of the graph which is an Input layer (explicit input layer method). This layer is setup as an input array shaped [timesteps = 7, features = 5].
Then we add to the graph the GRU layer.

3 – Run graph

We call the forward method and retrieve the result with the β€œPrediction 2D” method.
This method returns two variables, the first one is the layer information (cluster composed of the layer name, the graph index and the shape of the output layer) and the second one is the prediction with a shape of [batch_size, units].
The output dimension depends on the parameters β€œreturn-sequences” refer to the chapter β€œDimension” of this documentation.

 

GRU layer, batch and dimension

1 – Generate a set of data

We generate an array of data of type single and shape [number of batch = 9, batch_size = 10, timesteps = 7, features = 5].

2 – Define graph

First, we define the first layer of the graph which is an Input layer (explicit input layer method). This layer is setup as an input array shaped [timesteps = 7, features = 5].
Then we add to the graph the GRU layer.

3 – Run graph

We call the forward method and retrieve the result with the β€œPrediction 2D” method.
This method returns two variables, the first one is the layer information (cluster composed of the layer name, the graph index and the shape of the output layer) and the second one is the prediction with a shape of [batch_size, units].
The output dimension depends on the parameters β€œreturn-sequences” refer to the chapter β€œDimension” of this documentation.

 

Tags:
Table of Contents