Skip to content

conv1

1D convolution.

This layer performs 1D convolution operations on an input.
The padding rule is compatible with Keras (TensorFlow). Note that the padding rules for Conv1D differ from padding rules for Conv2D.


Parameter

  • stride : Integer
  • dilation : Integer
  • padding : String, "same", "valid" or "casual". They are compatible with Keras (TensorFlow).
  • has_relu : Boolean, whether the layer applies a ReLU function to the output.
  • relu_max_value : Number, the layer takes the upper bound if max_value > 0.f.