Welcome to our Support Center

Convolution 1D

Description

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

 

Input parameters

 

Graph in : model architecture

parameters : layer parameters.

n_filters : integer, the dimensionality of the output space.
Default value “3”.
size : integer, specify the length of the 1D convolution window.
Default value “3”.
stride : integer, specify the stride length of the convolution.
Default value “1”.
dilation_rate : integer, specifying the dilation rate to use for dilated convolution.
Default value “1”.
activation : enum, activation function to use.
Default value “relu”.
use_bias? : boolean, whether the layer uses a bias vector.
Default value “True”.
padding : boolean, False = “valid” means no padding. True = “same” results in padding with zeros evenly to the left/right or up/down of the input such that output has the same height/width dimension as the input.
Default value “False”.
 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”.
optimizer :

 algorithm : enum, (name of optimizer) for optimizer instance.
Default value “adam”.
learning_rate : float, define the learning rate to use.
Default value “0.001”.
beta_1 : float, define the exponential decay rate for the 1st moment estimates.
Default value “0.9”.
beta_2 : float, define the exponential decay rate for the 2nd moment estimates.
Default value “0.999”.

filter_initializer : enum, initializer for the kernel weights matrix.
Default value “glorot_uniform”.
bias_initializer : enum, initializer for the bias vector.
Default value “zero”.
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”.

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

3-Dimension tensor with shape : [batch_size, channel, width] (default “channel_first” parameters).
In case of “channel_last” setup, forward function will input shape [batch_size, width, channel].

 

Output shape

Same shape as input 3-Dimension tensor with shape : [batch_size, channel, width] (default “channel_first” parameters).
In case of “channel_last” setup, forward function will input shape [batch_size, width, channel].

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

Convolution 1D layer

1 – Generate a set of data

We generate an array of data of type single and shape [batch_size, channel, width] (channel first default layer configuration).
In case of channel last layer configuration, shape is [batch_size, width, channel].

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 [channel = 5, width = 128].
Then we add to the graph the Conv1D 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, filter, new_width].

 

Convolution 1D 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, channel = 5, width = 128] (channel first default layer configuration).
In case of channel last layer configuration, shape is [batch_size, width, channel].

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 [channel = 5, width = 128].
Then we add to the graph the Conv1D 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, filter, new_width].

 

Table of Contents