3D convolution layer (e.g. spatial convolution over volumes).
This layer creates a convolution kernel that is convolved
with the layer input to produce a tensor of outputs.
If useBias is True, a bias vector is created and added to the outputs.
If activation is not null, it is applied to the outputs as well.
When using this layer as the first layer in a model,
provide the keyword argument inputShape
(Array of integers, does not include the sample axis),
e.g. inputShape=[128, 128, 128, 1] for 128x128x128 grayscale volumes
in dataFormat='channelsLast'.
3D convolution layer (e.g. spatial convolution over volumes).
This layer creates a convolution kernel that is convolved with the layer input to produce a tensor of outputs.
If
useBias
is True, a bias vector is created and added to the outputs.If
activation
is notnull
, it is applied to the outputs as well.When using this layer as the first layer in a model, provide the keyword argument
inputShape
(Array of integers, does not include the sample axis), e.g.inputShape=[128, 128, 128, 1]
for 128x128x128 grayscale volumes indataFormat='channelsLast'
.