Welcome to our Support Center

PReLU 5D

Description

Gets the weights of the PReLU5D selected by the name. Type : polymorphic.

 

Input parameters

 

 Model in : model architecture.
 name : stringname of layer.

 

Output parameters

 

 Model out : model architecture.

 weights_info : cluster

 index : integer, index of layer.
 name : string, name of layer.
 weights : cluster

alpha : array, 4D alpha values. alpha = [input_dim1, input_dim2, input_dim3, input_dim4].

Dimension

  • alpha = [input_dim1, input_dim2, input_dim3, input_dim4]

Its size depends on the input of the PReLU layer.
For example, if the layer has an entry [batch_size = 10, input_dim1 = 7, input_dim2 = 5, input_dim3 = 3, input_dim4 = 2] then alpha will have a size [input_dim1 = 7, input_dim2 = 5, input_dim3 = 3, input_dim4 = 2].
The size can also depend on the “shared_axis” parameter that you set to the PReLU layer. Each axis specified in this param is represented by a 1 in the weights.
For example, if you set the parameter with the values [2], alpha will have a size [input_dim1 = 7, 1, input_dim3 = 3, input_dim4 = 2].
Another example, if you define the parameter with the values [2, 3], alpha will have a size [input_dim1 = 7, 1, 1, input_dim4 = 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