View source on GitHub
|
2D convolution layer (e.g. spatial convolution over images).
Inherits From: Conv2D, Layer, Layer, Module
tf.compat.v1.layers.Conv2D(
filters,
kernel_size,
strides=(1, 1),
padding='valid',
data_format='channels_last',
dilation_rate=(1, 1),
activation=None,
use_bias=True,
kernel_initializer=None,
bias_initializer=tf.compat.v1.zeros_initializer(),
kernel_regularizer=None,
bias_regularizer=None,
activity_regularizer=None,
kernel_constraint=None,
bias_constraint=None,
trainable=True,
name=None,
**kwargs
)
Migrate to TF2
This API is a legacy api that is only compatible with eager execution and
tf.function if you combine it with
tf.compat.v1.keras.utils.track_tf1_style_variables
Please refer to tf.layers model mapping section of the migration guide to learn how to use your TensorFlow v1 model in TF2 with Keras.
The corresponding TensorFlow v2 layer is tf.keras.layers.Conv2D.
Structural Mapping to Native TF2
None of the supported arguments have changed name.
Before:
conv = tf.compat.v1.layers.Conv2D(filters=3, kernel_size=3)
After:
conv = tf.keras.layers.Conv2D(filters=3, kernels_size=3)
View source on GitHub