一維卷積層的函數接口(例如時間卷積)。
用法
tf.compat.v1.layers.conv1d(
inputs, filters, kernel_size, strides=1, padding='valid',
data_format='channels_last', dilation_rate=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, reuse=None
)
參數
-
inputs
張量輸入。 -
filters
整數,輸出空間的維度(即卷積中的過濾器數量)。 -
kernel_size
一個整數或單個整數的元組/列表,指定一維卷積窗口的長度。 -
strides
一個整數或單個整數的元組/列表,指定卷積的步長。指定任何步幅值 != 1 與指定任何dilation_rate
值 != 1 不兼容。 -
padding
"valid"
或"same"
之一(不區分大小寫)。"valid"
表示沒有填充。"same"
導致在輸入的左/右或上/下均勻填充,以使輸出具有與輸入相同的高度/寬度尺寸。 -
data_format
一個字符串,是channels_last
(默認)或channels_first
之一。輸入中維度的排序。channels_last
對應於形狀為(batch, length, channels)
的輸入,而channels_first
對應於形狀為(batch, channels, length)
的輸入。 -
dilation_rate
一個整數或單個整數的元組/列表,指定用於擴張卷積的擴張率。目前,指定任何dilation_rate
值 != 1 與指定任何strides
值 != 1 不兼容。 -
activation
激活函數。將其設置為 None 以保持線性激活。 -
use_bias
布爾值,圖層是否使用偏差。 -
kernel_initializer
卷積核的初始化器。 -
bias_initializer
偏置向量的初始化器。如果沒有,將使用默認初始化程序。 -
kernel_regularizer
卷積核的可選正則化器。 -
bias_regularizer
偏置向量的可選正則化器。 -
activity_regularizer
輸出的可選正則化函數。 -
kernel_constraint
由Optimizer
更新後應用於內核的可選投影函數(例如,用於實現層權重的範數約束或值約束)。該函數必須將未投影變量作為輸入,並且必須返回投影變量(必須具有相同的形狀)。在進行異步分布式訓練時使用約束是不安全的。 -
bias_constraint
由Optimizer
更新後應用於偏差的可選投影函數。 -
trainable
布爾值,如果True
還將變量添加到圖形集合GraphKeys.TRAINABLE_VARIABLES
(請參見tf.Variable
)。 -
name
一個字符串,圖層的名稱。 -
reuse
布爾值,是否重用前一層同名的權重。
返回
- 輸出張量。
拋出
-
ValueError
如果啟用了即刻執行。
遷移到 TF2
警告:這個 API 是為 TensorFlow v1 設計的。繼續閱讀有關如何從該 API 遷移到本機 TensorFlow v2 等效項的詳細信息。見TensorFlow v1 到 TensorFlow v2 遷移指南有關如何遷移其餘代碼的說明。
此 API 是一個遺留 api,僅與 Eager Execution 和 tf.function
兼容,如果您將其與 tf.compat.v1.keras.utils.track_tf1_style_variables
結合使用
請參閱遷移指南的 tf.layers 模型映射部分,了解如何在 TF2 中將 TensorFlow v1 模型與 Keras 一起使用。
對應的 TensorFlow v2 層是 tf.keras.layers.Conv1D
。
到原生 TF2 的結構映射
支持的參數均未更改名稱。
前:
y = tf.compat.v1.layers.conv1d(x, filters=3, kernel_size=3)
後:
要使用 TF1 函數層遷移代碼,請使用 Keras 函數 API:
x = tf.keras.Input((28, 28, 1))
y = tf.keras.layers.Conv1D(filters=3, kernels_size=3)(x)
model = tf.keras.Model(x, y)
該層創建了一個卷積核,該卷積核與層輸入進行卷積(實際上是cross-correlated)以產生輸出張量。如果 use_bias
為 True(並且提供了 bias_initializer
),則會創建一個偏置向量並將其添加到輸出中。最後,如果 activation
不是 None
,它也會應用於輸出。
相關用法
- Python tf.compat.v1.layers.conv3d用法及代碼示例
- Python tf.compat.v1.layers.conv2d_transpose用法及代碼示例
- Python tf.compat.v1.layers.conv2d用法及代碼示例
- Python tf.compat.v1.layers.conv3d_transpose用法及代碼示例
- Python tf.compat.v1.layers.Conv3D用法及代碼示例
- Python tf.compat.v1.layers.dense用法及代碼示例
- Python tf.compat.v1.layers.AveragePooling3D用法及代碼示例
- Python tf.compat.v1.layers.Conv2DTranspose用法及代碼示例
- Python tf.compat.v1.layers.max_pooling3d用法及代碼示例
- Python tf.compat.v1.layers.average_pooling1d用法及代碼示例
- Python tf.compat.v1.layers.experimental.keras_style_scope用法及代碼示例
- Python tf.compat.v1.layers.flatten用法及代碼示例
- Python tf.compat.v1.layers.experimental.set_keras_style用法及代碼示例
- Python tf.compat.v1.layers.dropout用法及代碼示例
- Python tf.compat.v1.layers.batch_normalization用法及代碼示例
- Python tf.compat.v1.layers.average_pooling2d用法及代碼示例
- Python tf.compat.v1.layers.MaxPooling1D用法及代碼示例
- Python tf.compat.v1.layers.Conv2D用法及代碼示例
- Python tf.compat.v1.layers.AveragePooling1D用法及代碼示例
- Python tf.compat.v1.layers.BatchNormalization用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.layers.conv1d。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。