Welcome to our Support Center

SimpleRNN

Description

Adds the weights of the SimpleRNN layer to the weights table. Type : polymorphic.

 

Input parameters

 

Weights in : array

 index : integer, index of layer.
 weights : variant, weights values.

 index : integerindex of layer.
 input_weights : array, 2D values. input_weights = [features, units].
 hidden_weights : array, 2D values. hidden_weights = [units, units].
 biases : array, 1D values. biases = [units].

Output parameters

 

 Weights out : array

 index : integer, index of layer.
 weights : variant, weights values.

Dimension

  • input_weights = [features, units]

The size depends on the SimpleRNN layer input and the units parameter.
For example, if the input has a size of [batch = 10, timesteps = 8, features = 5] and units a value of 3 then input_weights will have a size of [features = 5, units = 3].
Another example, if the input has a size of [batch = 15, timesteps = 8, features = 6] and units a value of 2 then input_weights will have a size of [features = 6, units = 2].

 

  • hidden_weights = [units, units]

The size depends on the units parameter of the SimpleRNN layer.
For example, if units has a value of 6 then hidden_weights will have a size of [units = 6, units = 6].
Another example, if units has a value of 2 then hidden_weights will have a size of [units = 2, units = 2].

 

  • biases = [units]

The size depends on the units parameter of the SimpleRNN layer.
For example, if units has a value of 6, then biases will have a size of [units = 6].
Another example, if units has a value of 2, then biases will have a size of [units = 2].

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 HAIBAL library to run it).

Table of Contents