2D 輸入(例如圖像)的最大池化層。
用法
tf.compat.v1.layers.max_pooling2d(
inputs, pool_size, strides, padding='valid',
data_format='channels_last', name=None
)
參數
-
inputs
要匯集的張量。必須有4級。 -
pool_size
一個整數或 2 個整數的元組/列表:(pool_height, pool_width) 指定池化窗口的大小。可以是單個整數,為所有空間維度指定相同的值。 -
strides
一個整數或 2 個整數的元組/列表,指定池化操作的步長。可以是單個整數,為所有空間維度指定相同的值。 -
padding
一個字符串。填充方法,'valid' 或 'same'。不區分大小寫。 -
data_format
一個字符串。輸入中維度的排序。支持channels_last
(默認)和channels_first
。channels_last
對應於形狀為(batch, height, width, channels)
的輸入,而channels_first
對應於形狀為(batch, channels, height, width)
的輸入。 -
name
一個字符串,圖層的名稱。
返回
- 輸出張量。
拋出
-
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.MaxPooling2D
。
到原生 TF2 的結構映射
支持的參數均未更改名稱。
前:
y = tf.compat.v1.layers.max_pooling2d(x, pool_size=2, strides=2)
後:
要使用 TF1 函數層遷移代碼,請使用 Keras 函數 API:
x = tf.keras.Input((28, 28, 1))
y = tf.keras.layers.MaxPooling2D(pool_size=2, strides=2)(x)
model = tf.keras.Model(x, y)
相關用法
- Python tf.compat.v1.layers.max_pooling3d用法及代碼示例
- Python tf.compat.v1.layers.max_pooling1d用法及代碼示例
- Python tf.compat.v1.layers.conv3d用法及代碼示例
- 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.average_pooling1d用法及代碼示例
- Python tf.compat.v1.layers.experimental.keras_style_scope用法及代碼示例
- Python tf.compat.v1.layers.flatten用法及代碼示例
- Python tf.compat.v1.layers.conv1d用法及代碼示例
- Python tf.compat.v1.layers.experimental.set_keras_style用法及代碼示例
- Python tf.compat.v1.layers.conv2d_transpose用法及代碼示例
- 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.Conv2D用法及代碼示例
- Python tf.compat.v1.layers.AveragePooling1D用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.layers.max_pooling2d。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。