Welcome to our Support Center

ZeroPadding1D

Description

Setup and add the zero padding 1D layer into the model during the definition graph step. Type : polymorphic.

 

Input parameters

 

Graph in : model architecture.

parameters : layer parameters.

padd : cluster, how many zeros to add at the beginning and the end of the padding dimension ((padd_left, padd_right)).
Default value “(1,1)”.
Β data_format :Β enum, one ofΒ channels_lastΒ orΒ channels_firstΒ (default) . The ordering of the dimensions in the inputs.Β channel_lastΒ corresponds to inputs with shapeΒ (batch, steps, features)Β whileΒ channels_firstΒ corresponds to inputs with shapeΒ (batch, features, steps).
Default value β€œchannels_first”.
Β training?Β :Β boolean, whether the layer is in training mode (can store data for backward).
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”.

Β in/out paramΒ :

Β input_shapeΒ :Β integer array, shape (not including the batch axis). NB : To be used only if it is the first layer of the model.
Β output_behaviorΒ :Β enum, setup if the layer is an output layer.
Default β€œNot Output”​​.

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

 

Output parameters

 

Graph out : model architecture.

Dimension

Input shape

3D tensor with shape :

  • If data_format is β€œchannels_last” : (batch_size, axis_to_pad, features)
  • If data_format is β€œchannels_first” : (batch_size, features, axis_to_pad)

Output shape

3D tensor with shape :

  • If data_format is β€œchannels_last” : (batch_size, padded_axis, features)
  • If data_format is β€œchannels_first” : (batch_size, features, padded_axis)

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).

ZeroPadding1D layer

1 – Generate a set of data

We generate an array of data of type single and shape [batch size = 10, features = 7, axis_to_pad = 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 [features = 7, axis_to_pad = 5].
Then we add to the graph the ZeroPadding1D layer.

3 – Run graph

We call the forward method and retrieve the result with the β€œPrediction 3D” 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, features, padded_axis].

 

ZeroPadding1D 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, features = 7, axis_to_pad = 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 [features = 7, axis_to_pad = 5].
Then we add to the graph the ZeroPadding1D layer.

3 – Run graph

We call the forward method and retrieve the result with the β€œPrediction 3D” 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, features, padded_axis].

 

Table of Contents