layer_locally_connected_1d()
works similarly to layer_conv_1d()
, except
that weights are unshared, that is, a different set of filters is applied at
each different patch of the input.
layer_locally_connected_1d(object, filters, kernel_size, strides = 1L,
padding = "valid", data_format = NULL, activation = NULL,
use_bias = TRUE, kernel_initializer = "glorot_uniform",
bias_initializer = "zeros", kernel_regularizer = NULL,
bias_regularizer = NULL, activity_regularizer = NULL,
kernel_constraint = NULL, bias_constraint = NULL,
batch_size = NULL, name = NULL, trainable = NULL, weights = NULL)
Model or layer object
Integer, the dimensionality of the output space (i.e. the number output of filters in the convolution).
An integer or list of a single integer, specifying the length of the 1D convolution window.
An integer or list of a single integer, specifying the stride
length of the convolution. Specifying any stride value != 1 is incompatible
with specifying any dilation_rate
value != 1.
Currently only supports "valid"
(case-insensitive). "same"
may be supported in the future.
A string, one of channels_last
(default) or
channels_first
. The ordering of the dimensions in the inputs.
channels_last
corresponds to inputs with shape (batch, height, width, channels)
while channels_first
corresponds to inputs with shape (batch, channels, height, width)
. It defaults to the image_data_format
value
found in your Keras config file at ~/.keras/keras.json
. If you never set
it, then it will be "channels_last".
Activation function to use. If you don't specify anything,
no activation is applied (ie. "linear" activation: a(x) = x
).
Boolean, whether the layer uses a bias vector.
Initializer for the kernel
weights matrix.
Initializer for the bias vector.
Regularizer function applied to the kernel
weights matrix.
Regularizer function applied to the bias vector.
Regularizer function applied to the output of the layer (its "activation")..
Constraint function applied to the kernel matrix.
Constraint function applied to the bias vector.
Fixed batch size for layer
An optional name string for the layer. Should be unique in a model (do not reuse the same name twice). It will be autogenerated if it isn't provided.
Whether the layer weights will be updated during training.
Initial weights for layer.
3D tensor with shape: (batch_size, steps, input_dim)
3D tensor with shape: (batch_size, new_steps, filters)
steps
value might have changed due to padding or strides.
Other locally connected layers: layer_locally_connected_2d