tf.keras.backend.local_conv1d

View source on GitHub

Apply 1D conv with un-shared weights.

tf.keras.backend.local_conv1d(
    inputs, kernel, kernel_size, strides, data_format=None
)

Arguments:

Returns:

A 3d tensor with shape: (batch_size, output_length, filters) if data_format='channels_first' or 3D tensor with shape: (batch_size, filters, output_length) if data_format='channels_last'.