SeparableConv2D
classkeras.layers.SeparableConv2D(
filters,
kernel_size,
strides=(1, 1),
padding="valid",
data_format=None,
dilation_rate=(1, 1),
depth_multiplier=1,
activation=None,
use_bias=True,
depthwise_initializer="glorot_uniform",
pointwise_initializer="glorot_uniform",
bias_initializer="zeros",
depthwise_regularizer=None,
pointwise_regularizer=None,
bias_regularizer=None,
activity_regularizer=None,
depthwise_constraint=None,
pointwise_constraint=None,
bias_constraint=None,
**kwargs
)
2D separable convolution layer.
This layer performs a depthwise convolution that acts separately on
channels, followed by a pointwise convolution that mixes channels.
If use_bias
is True and a bias initializer is provided,
it adds a bias vector to the output. It then optionally applies an
activation function to produce the final output.
Arguments
strides > 1
is
incompatible with dilation_rate > 1
."valid"
or "same"
(case-insensitive).
"valid"
means no padding. "same"
results in padding evenly to
the left/right or up/down of the input. When padding="same"
and
strides=1
, the output has the same size as the input."channels_last"
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"
.input_channel * depth_multiplier
.None
, no activation is applied.True
, bias will be added to the output."glorot_uniform"
)
will be used."glorot_uniform"
)
will be used.Optimizer
(e.g. used
for norm constraints or value constraints for layer weights). The
function must take as input the unprojected variable and must return
the projected variable (which must have the same shape).Optimizer
.Optimizer
.Input shape
data_format="channels_last"
:
A 4D tensor with shape: (batch_size, height, width, channels)
data_format="channels_first"
:
A 4D tensor with shape: (batch_size, channels, height, width)
Output shape
data_format="channels_last"
:
A 4D tensor with shape: (batch_size, new_height, new_width, filters)
data_format="channels_first"
:
A 4D tensor with shape: (batch_size, filters, new_height, new_width)
Returns
A 4D tensor representing
activation(separable_conv2d(inputs, kernel) + bias)
.
Example
>>> x = np.random.rand(4, 10, 10, 12)
>>> y = keras.layers.SeparableConv2D(3, 4, 3, 2, activation='relu')(x)
>>> print(y.shape)
(4, 4, 4, 4)