View source on GitHub |
3D convolution layer.
tfc.layers.SignalConv3D(
filters,
kernel_support,
corr=False,
strides_down=1,
strides_up=1,
padding='valid',
extra_pad_end=None,
channel_separable=False,
data_format='channels_last',
activation=None,
use_bias=False,
use_explicit=True,
kernel_parameter='rdft',
bias_parameter='variable',
kernel_initializer='variance_scaling',
bias_initializer='zeros',
kernel_regularizer=None,
bias_regularizer=None,
**kwargs
)
This layer creates a filter kernel that is convolved or cross correlated with
the layer input to produce an output tensor. The main difference of this class
to tf.layers.Conv3D
is how padding, up- and downsampling, and alignment
is handled. It supports much more flexible options for structuring the linear
transform.
In general, the outputs are equivalent to a composition of:
- an upsampling step (if
strides_up > 1
) - a convolution or cross correlation
- a downsampling step (if
strides_down > 1
) - addition of a bias vector (if
use_bias == True
) - a pointwise nonlinearity (if
activation is not None
)
For more information on what the difference between convolution and cross correlation is, see this and this Wikipedia article, respectively. Note that the distinction between convolution and cross correlation is occasionally blurred (one may use convolution as an umbrella term for both). For a discussion of up-/downsampling, refer to the articles about upsampling and decimation. A more in-depth treatment of all of these operations can be found in:
"Discrete-Time Signal Processing"
Oppenheim, Schafer, Buck (Prentice Hall)
For purposes of this class, the center position of a kernel is always
considered to be at K // 2
, where K
is the support length of the kernel.
This implies that in the 'same_*'
padding modes, all of the following
operations will produce the same result if applied to the same inputs, which
is not generally true for convolution operations as implemented by
tf.nn.convolution
or tf.layers.Conv?D
(numbers represent kernel
coefficient values):
- convolve with
[1, 2, 3]
- convolve with
[0, 1, 2, 3, 0]
- convolve with
[0, 1, 2, 3]
- correlate with
[3, 2, 1]
- correlate with
[0, 3, 2, 1, 0]
- correlate with
[0, 3, 2, 1]
Available padding (boundary handling) modes:
'valid'
: This always yields the maximum number of output samples that can be computed without making any assumptions about the values outside of the support of the input tensor. The padding semantics are always applied to the inputs. In contrast, even thoughtf.nn.conv2d_transpose
implements upsampling, in'VALID'
mode it will produce an output tensor with larger support than the input tensor (because it is the transpose of a'VALID'
downsampled convolution).Examples (numbers represent indexes into the respective tensors, periods represent skipped spatial positions):
kernel_support = 5
andstrides_down = 2
:inputs: |0 1 2 3 4 5 6 7 8| outputs: | 0 . 1 . 2 |
inputs: |0 1 2 3 4 5 6 7| outputs: | 0 . 1 . |
kernel_support = 3
,strides_up = 2
, andextra_pad_end = True
:inputs: |0 . 1 . 2 . 3 . 4 .| outputs: | 0 1 2 3 4 5 6 7 |
kernel_support = 3
,strides_up = 2
, andextra_pad_end = False
:inputs: |0 . 1 . 2 . 3 . 4| outputs: | 0 1 2 3 4 5 6 |
'same_zeros'
: Values outside of the input tensor support are assumed to be zero. Similar to'SAME'
intf.nn.convolution
, but with different padding. In'SAME'
, the spatial alignment of the output depends on the input shape. Here, the output alignment depends only on the kernel support and the strides, making alignment more predictable. The first sample in the output is always spatially aligned with the first sample in the input.Examples (numbers represent indexes into the respective tensors, periods represent skipped spatial positions):
kernel_support = 5
andstrides_down = 2
:inputs: |0 1 2 3 4 5 6 7 8| outputs: |0 . 1 . 2 . 3 . 4|
inputs: |0 1 2 3 4 5 6 7| outputs: |0 . 1 . 2 . 3 .|
kernel_support = 3
,strides_up = 2
, andextra_pad_end = True
:inputs: |0 . 1 . 2 . 3 . 4 .| outputs: |0 1 2 3 4 5 6 7 8 9|
kernel_support = 3
,strides_up = 2
, andextra_pad_end = False
:inputs: |0 . 1 . 2 . 3 . 4| outputs: |0 1 2 3 4 5 6 7 8|
'same_reflect'
: Values outside of the input tensor support are assumed to be reflections of the samples inside. Note that this is the same padding as implemented bytf.pad
in the'REFLECT'
mode (i.e. with the symmetry axis on the samples rather than between). The output alignment is identical to the'same_zeros'
mode.Examples: see
'same_zeros'
.When applying several convolutions with down- or upsampling in a sequence, it can be helpful to keep the axis of symmetry for the reflections consistent. To do this, set
extra_pad_end = False
and make sure that the input has lengthM
, such thatM % S == 1
, whereS
is the product of stride lengths of all subsequent convolutions. Example for subsequent downsampling (here,M = 9
,S = 4
, and^
indicate the symmetry axes for reflection):inputs: |0 1 2 3 4 5 6 7 8| intermediate: |0 . 1 . 2 . 3 . 4| outputs: |0 . . . 1 . . . 2| ^ ^
Note that due to limitations of the underlying operations, not all
combinations of arguments are currently implemented. In this case, this class
will throw a NotImplementedError
exception.
Speed tips:
- Prefer combining correlations with downsampling, and convolutions with upsampling, as the underlying ops implement these combinations directly.
- If that isn't desirable, prefer using odd-length kernel supports, since odd-length kernels can be flipped if necessary, to use the fastest implementation available.
- Combining upsampling and downsampling (for rational resampling ratios) is relatively slow, because no underlying ops exist for that use case. Downsampling in this case is implemented by discarding computed output values.
- Note that
channel_separable
is only implemented for 1D and 2D. Also, upsampled channel-separable convolutions are currently only implemented forfilters == 1
. When usingchannel_separable
, prefer using identical strides in all dimensions to maximize performance.
Args | |
---|---|
filters
|
Integer. Initial value of eponymous attribute. |
kernel_support
|
Integer or iterable of integers. Initial value of eponymous attribute. |
corr
|
Boolean. Initial value of eponymous attribute. |
strides_down
|
Integer or iterable of integers. Initial value of eponymous attribute. |
strides_up
|
Integer or iterable of integers. Initial value of eponymous attribute. |
padding
|
String. Initial value of eponymous attribute. |
extra_pad_end
|
Boolean or None . Initial value of eponymous attribute.
|
channel_separable
|
Boolean. Initial value of eponymous attribute. |
data_format
|
String. Initial value of eponymous attribute. |
activation
|
Callable or None . Initial value of eponymous attribute.
|
use_bias
|
Boolean. Initial value of eponymous attribute. |
use_explicit
|
Boolean. Initial value of eponymous attribute. |
kernel_parameter
|
Tensor, tf.Variable , callable, 'rdft' , or
'variable' . Initial value of eponymous attribute.
|
bias_parameter
|
Tensor, tf.Variable , callable, or 'variable' . Initial
value of eponymous attribute.
|
kernel_initializer
|
Initializer object. Initial value of eponymous
attribute.
|
bias_initializer
|
Initializer object. Initial value of eponymous
attribute.
|
kernel_regularizer
|
Regularizer object or None . Initial value of
eponymous attribute.
|
bias_regularizer
|
Regularizer object or None . Initial value of
eponymous attribute.
|
**kwargs
|
Keyword arguments passed to superclass (Layer ).
|
Attributes | |
---|---|
filters
|
Integer. If not channel_separable , specifies the total number of
filters, which is equal to the number of output channels. Otherwise,
specifies the number of filters per channel, which makes the number of
output channels equal to filters times the number of input channels.
|
kernel_support
|
An integer or iterable of 3 integers, specifying the length of the convolution/correlation window in each dimension. |
corr
|
Boolean. If True, compute cross correlation. If False, convolution. |
strides_down
|
An integer or iterable of 3 integers, specifying an optional downsampling stride after the convolution/correlation. |
strides_up
|
An integer or iterable of 3 integers, specifying an optional upsampling stride before the convolution/correlation. |
padding
|
String. One of the supported padding modes (see above). |
extra_pad_end
|
Boolean or None . When upsampling, use extra skipped samples
at the end of each dimension. None implies True for same_* padding
modes, and False for valid . For examples, refer to the discussion of
padding modes above.
|
channel_separable
|
Boolean. If False , each output channel is computed by
summing over all filtered input channels. If True , each output channel
is computed from only one input channel, and filters specifies the
number of filters per channel. The output channels are ordered such that
the first block of filters channels is computed from the first input
channel, the second block from the second input channel, etc.
|
data_format
|
String, one of 'channels_last' or 'channels_first' . The
ordering of the input dimensions. 'channels_last' corresponds to input
tensors with shape (batch, ..., channels) , while 'channels_first'
corresponds to input tensors with shape (batch, channels, ...) .
|
activation
|
Activation function or None .
|
use_bias
|
Boolean, whether an additive constant will be applied to each output channel. |
use_explicit
|
Boolean, whether to use EXPLICIT padding mode (supported in
TensorFlow >1.14).
|
kernel_parameter
|
Tensor, tf.Variable , callable, or one of the strings
'rdft' , 'variable' . A tf.Tensor means that the kernel is fixed, a
tf.Variable that it is trained. A callable can be used to determine the
value of the kernel as a function of some other variable or tensor. This
can be a Parameter object. 'rdft' means that when the layer is built,
a RDFTParameter object is created to train the kernel. 'variable'
means that when the layer is built, a tf.Variable is created to train
the kernel. Note that certain choices here such as tf.Tensor s or lambda
functions may prevent JSON-style serialization (Parameter objects and
tf.Variable s work).
|
bias_parameter
|
Tensor, tf.Variable , callable, or the string 'variable' .
A tf.Tensor means that the bias is fixed, a tf.Variable that it is
trained. A callable can be used to determine the value of the bias as a
function of some other variable or tensor. This can be a Parameter
object. 'variable' means that when the layer is built, a tf.Variable
is created to train the bias. Note that certain choices here such as
tf.Tensor s or lambda functions may prevent JSON-style serialization
(Parameter objects and tf.Variable s work).
|
kernel_initializer
|
Initializer object for the filter kernel.
|
bias_initializer
|
Initializer object for the bias vector.
|
kernel_regularizer
|
Regularizer object or None . Optional regularizer for
the filter kernel.
|
bias_regularizer
|
Regularizer object or None . Optional regularizer for
the bias vector.
|
kernel
|
tf.Tensor . Read-only property always returning the current kernel
tensor.
|
bias
|
tf.Tensor . Read-only property always returning the current bias
tensor.
|
activity_regularizer
|
Optional regularizer function for the output of this layer. |
compute_dtype
|
The dtype of the layer's computations.
This is equivalent to Layers automatically cast their inputs to the compute dtype, which
causes computations and the output to be in the compute dtype as well.
This is done by the base Layer class in Layers often perform certain internal computations in higher precision
when |
dtype
|
The dtype of the layer weights.
This is equivalent to |
dtype_policy
|
The dtype policy associated with this layer.
This is an instance of a |
dynamic
|
Whether the layer is dynamic (eager-only); set in the constructor. |
input
|
Retrieves the input tensor(s) of a layer.
Only applicable if the layer has exactly one input, i.e. if it is connected to one incoming layer. |
input_spec
|
InputSpec instance(s) describing the input format for this layer.
When you create a layer subclass, you can set
Now, if you try to call the layer on an input that isn't rank 4
(for instance, an input of shape
Input checks that can be specified via
For more information, see |
losses
|
List of losses added using the add_loss() API.
Variable regularization tensors are created when this property is
accessed, so it is eager safe: accessing
|
metrics
|
List of metrics attached to the layer. |
name
|
Name of the layer (string), set in the constructor. |
name_scope
|
Returns a tf.name_scope instance for this class.
|
non_trainable_weights
|
List of all non-trainable weights tracked by this layer.
Non-trainable weights are not updated during training. They are
expected to be updated manually in |
output
|
Retrieves the output tensor(s) of a layer.
Only applicable if the layer has exactly one output, i.e. if it is connected to one incoming layer. |
submodules
|
Sequence of all sub-modules.
Submodules are modules which are properties of this module, or found as properties of modules which are properties of this module (and so on).
|
supports_masking
|
Whether this layer supports computing a mask using compute_mask .
|
trainable
|
|
trainable_weights
|
List of all trainable weights tracked by this layer.
Trainable weights are updated via gradient descent during training. |
variable_dtype
|
Alias of Layer.dtype , the dtype of the weights.
|
weights
|
Returns the list of all layer variables/weights. |
Methods
add_loss
add_loss(
losses, **kwargs
)
Add loss tensor(s), potentially dependent on layer inputs.
Some losses (for instance, activity regularization losses) may be
dependent on the inputs passed when calling a layer. Hence, when reusing
the same layer on different inputs a
and b
, some entries in
layer.losses
may be dependent on a
and some on b
. This method
automatically keeps track of dependencies.
This method can be used inside a subclassed layer or model's call
function, in which case losses
should be a Tensor or list of Tensors.
Example:
class MyLayer(tf.keras.layers.Layer):
def call(self, inputs):
self.add_loss(tf.abs(tf.reduce_mean(inputs)))
return inputs
The same code works in distributed training: the input to add_loss()
is treated like a regularization loss and averaged across replicas
by the training loop (both built-in Model.fit()
and compliant custom
training loops).
The add_loss
method can also be called directly on a Functional Model
during construction. In this case, any loss Tensors passed to this Model
must be symbolic and be able to be traced back to the model's Input
s.
These losses become part of the model's topology and are tracked in
get_config
.
Example:
inputs = tf.keras.Input(shape=(10,))
x = tf.keras.layers.Dense(10)(inputs)
outputs = tf.keras.layers.Dense(1)(x)
model = tf.keras.Model(inputs, outputs)
# Activity regularization.
model.add_loss(tf.abs(tf.reduce_mean(x)))
If this is not the case for your loss (if, for example, your loss
references a Variable
of one of the model's layers), you can wrap your
loss in a zero-argument lambda. These losses are not tracked as part of
the model's topology since they can't be serialized.
Example:
inputs = tf.keras.Input(shape=(10,))
d = tf.keras.layers.Dense(10)
x = d(inputs)
outputs = tf.keras.layers.Dense(1)(x)
model = tf.keras.Model(inputs, outputs)
# Weight regularization.
model.add_loss(lambda: tf.reduce_mean(d.kernel))
Args | |
---|---|
losses
|
Loss tensor, or list/tuple of tensors. Rather than tensors, losses may also be zero-argument callables which create a loss tensor. |
**kwargs
|
Used for backwards compatibility only. |
build
build(
input_shape
)
Creates the variables of the layer (for subclass implementers).
This is a method that implementers of subclasses of Layer
or Model
can override if they need a state-creation step in-between
layer instantiation and layer call. It is invoked automatically before
the first execution of call()
.
This is typically used to create the weights of Layer
subclasses
(at the discretion of the subclass implementer).
Args | |
---|---|
input_shape
|
Instance of TensorShape , or list of instances of
TensorShape if the layer expects a list of inputs
(one instance per input).
|
build_from_config
build_from_config(
config
)
Builds the layer's states with the supplied config dict.
By default, this method calls the build(config["input_shape"])
method,
which creates weights based on the layer's input shape in the supplied
config. If your config contains other information needed to load the
layer's state, you should override this method.
Args | |
---|---|
config
|
Dict containing the input shape associated with this layer. |
compute_mask
compute_mask(
inputs, mask=None
)
Computes an output mask tensor.
Args | |
---|---|
inputs
|
Tensor or list of tensors. |
mask
|
Tensor or list of tensors. |
Returns | |
---|---|
None or a tensor (or list of tensors, one per output tensor of the layer). |
compute_output_shape
compute_output_shape(
input_shape
) -> tf.TensorShape
Computes the output shape of the layer.
This method will cause the layer's state to be built, if that has not happened before. This requires that the layer will later be used with inputs that match the input shape provided here.
Args | |
---|---|
input_shape
|
Shape tuple (tuple of integers) or tf.TensorShape ,
or structure of shape tuples / tf.TensorShape instances
(one per output tensor of the layer).
Shape tuples can include None for free dimensions,
instead of an integer.
|
Returns | |
---|---|
A tf.TensorShape instance
or structure of tf.TensorShape instances.
|
count_params
count_params()
Count the total number of scalars composing the weights.
Returns | |
---|---|
An integer count. |
Raises | |
---|---|
ValueError
|
if the layer isn't yet built (in which case its weights aren't yet defined). |
from_config
@classmethod
from_config( config )
Creates a layer from its config.
This method is the reverse of get_config
,
capable of instantiating the same layer from the config
dictionary. It does not handle layer connectivity
(handled by Network), nor weights (handled by set_weights
).
Args | |
---|---|
config
|
A Python dictionary, typically the output of get_config. |
Returns | |
---|---|
A layer instance. |
get_build_config
get_build_config()
Returns a dictionary with the layer's input shape.
This method returns a config dict that can be used by
build_from_config(config)
to create all states (e.g. Variables and
Lookup tables) needed by the layer.
By default, the config only contains the input shape that the layer was built with. If you're writing a custom layer that creates state in an unusual way, you should override this method to make sure this state is already created when Keras attempts to load its value upon model loading.
Returns | |
---|---|
A dict containing the input shape associated with the layer. |
get_config
get_config() -> Dict[str, Any]
Returns the config of the layer.
A layer config is a Python dictionary (serializable) containing the configuration of a layer. The same layer can be reinstantiated later (without its trained weights) from this configuration.
The config of a layer does not include connectivity
information, nor the layer class name. These are handled
by Network
(one layer of abstraction above).
Note that get_config()
does not guarantee to return a fresh copy of
dict every time it is called. The callers should make a copy of the
returned dict if they want to modify it.
Returns | |
---|---|
Python dictionary. |
get_weights
get_weights()
Returns the current weights of the layer, as NumPy arrays.
The weights of a layer represent the state of the layer. This function returns both trainable and non-trainable weight values associated with this layer as a list of NumPy arrays, which can in turn be used to load state into similarly parameterized layers.
For example, a Dense
layer returns a list of two values: the kernel
matrix and the bias vector. These can be used to set the weights of
another Dense
layer:
layer_a = tf.keras.layers.Dense(1,
kernel_initializer=tf.constant_initializer(1.))
a_out = layer_a(tf.convert_to_tensor([[1., 2., 3.]]))
layer_a.get_weights()
[array([[1.],
[1.],
[1.]], dtype=float32), array([0.], dtype=float32)]
layer_b = tf.keras.layers.Dense(1,
kernel_initializer=tf.constant_initializer(2.))
b_out = layer_b(tf.convert_to_tensor([[10., 20., 30.]]))
layer_b.get_weights()
[array([[2.],
[2.],
[2.]], dtype=float32), array([0.], dtype=float32)]
layer_b.set_weights(layer_a.get_weights())
layer_b.get_weights()
[array([[1.],
[1.],
[1.]], dtype=float32), array([0.], dtype=float32)]
Returns | |
---|---|
Weights values as a list of NumPy arrays. |
load_own_variables
load_own_variables(
store
)
Loads the state of the layer.
You can override this method to take full control of how the state of
the layer is loaded upon calling keras.models.load_model()
.
Args | |
---|---|
store
|
Dict from which the state of the model will be loaded. |
save_own_variables
save_own_variables(
store
)
Saves the state of the layer.
You can override this method to take full control of how the state of
the layer is saved upon calling model.save()
.
Args | |
---|---|
store
|
Dict where the state of the model will be saved. |
set_weights
set_weights(
weights
)
Sets the weights of the layer, from NumPy arrays.
The weights of a layer represent the state of the layer. This function sets the weight values from numpy arrays. The weight values should be passed in the order they are created by the layer. Note that the layer's weights must be instantiated before calling this function, by calling the layer.
For example, a Dense
layer returns a list of two values: the kernel
matrix and the bias vector. These can be used to set the weights of
another Dense
layer:
layer_a = tf.keras.layers.Dense(1,
kernel_initializer=tf.constant_initializer(1.))
a_out = layer_a(tf.convert_to_tensor([[1., 2., 3.]]))
layer_a.get_weights()
[array([[1.],
[1.],
[1.]], dtype=float32), array([0.], dtype=float32)]
layer_b = tf.keras.layers.Dense(1,
kernel_initializer=tf.constant_initializer(2.))
b_out = layer_b(tf.convert_to_tensor([[10., 20., 30.]]))
layer_b.get_weights()
[array([[2.],
[2.],
[2.]], dtype=float32), array([0.], dtype=float32)]
layer_b.set_weights(layer_a.get_weights())
layer_b.get_weights()
[array([[1.],
[1.],
[1.]], dtype=float32), array([0.], dtype=float32)]
Args | |
---|---|
weights
|
a list of NumPy arrays. The number
of arrays and their shape must match
number of the dimensions of the weights
of the layer (i.e. it should match the
output of get_weights ).
|
Raises | |
---|---|
ValueError
|
If the provided weights list does not match the layer's specifications. |
with_name_scope
@classmethod
with_name_scope( method )
Decorator to automatically enter the module name scope.
class MyModule(tf.Module):
@tf.Module.with_name_scope
def __call__(self, x):
if not hasattr(self, 'w'):
self.w = tf.Variable(tf.random.normal([x.shape[1], 3]))
return tf.matmul(x, self.w)
Using the above module would produce tf.Variable
s and tf.Tensor
s whose
names included the module name:
mod = MyModule()
mod(tf.ones([1, 2]))
<tf.Tensor: shape=(1, 3), dtype=float32, numpy=..., dtype=float32)>
mod.w
<tf.Variable 'my_module/Variable:0' shape=(2, 3) dtype=float32,
numpy=..., dtype=float32)>
Args | |
---|---|
method
|
The method to wrap. |
Returns | |
---|---|
The original method wrapped such that it enters the module's name scope. |
__call__
__call__(
*args, **kwargs
)
Wraps call
, applying pre- and post-processing steps.
Args | |
---|---|
*args
|
Positional arguments to be passed to self.call .
|
**kwargs
|
Keyword arguments to be passed to self.call .
|
Returns | |
---|---|
Output tensor(s). |
Note | |
---|---|
|
Raises | |
---|---|
ValueError
|
if the layer's call method returns None (an invalid
value).
|
RuntimeError
|
if super().__init__() was not called in the
constructor.
|