【问题标题】:Cropping in the very last layer in autoencoder in keras在keras中自动编码器的最后一层裁剪
【发布时间】:2018-03-08 13:45:46
【问题描述】:

我有形状为391 x 400 的图像。我尝试按照here 的描述使用自动编码器。

具体来说,我使用了以下代码:

from keras.layers import Input, Dense, Conv2D, MaxPooling2D, UpSampling2D
from keras.models import Model
from keras import backend as K

input_img = Input(shape=(391, 400, 1))  # adapt this if using `channels_first` image data format

x = Conv2D(16, (3, 3), activation='relu', padding='same')(input_img)
x = MaxPooling2D((2, 2), padding='same')(x)
x = Conv2D(8, (3, 3), activation='relu', padding='same')(x)
x = MaxPooling2D((2, 2), padding='same')(x)
x = Conv2D(8, (3, 3), activation='relu', padding='same')(x)
encoded = MaxPooling2D((2, 2), padding='same')(x)

# at this point the representation is (4, 4, 8) i.e. 128-dimensional

x = Conv2D(8, (3, 3), activation='relu', padding='same')(encoded)
x = UpSampling2D((2, 2))(x)
x = Conv2D(8, (3, 3), activation='relu', padding='same')(x)
x = UpSampling2D((2, 2))(x)
x = Conv2D(16, (3, 3), activation='relu', padding='same')(x)
x = UpSampling2D((2, 2))(x)
decoded = Conv2D(1, (3, 3), activation='sigmoid', padding='same')(x)

autoencoder = Model(input_img, decoded)
autoencoder.compile(optimizer='adadelta', loss='binary_crossentropy')

我得到以下信息:

ValueError: Error when checking target: expected conv2d_37 to have shape (None, 392, 400, 1) but got array with shape (500, 391, 400, 1)

我需要的是:将最后一层从392 x 400 删除/裁剪/重塑为391 x 400 的层。

感谢您的帮助。

【问题讨论】:

    标签: keras crop convolution keras-layer autoencoder


    【解决方案1】:

    有一个层叫做Cropping2D。要将最后一层从392 x 400 裁剪为391 x 400,您可以通过以下方式使用它:

    cropped = Cropping2D(cropping=((1, 0), (0, 0)))(decoded)
    autoencoder = Model(input_img, cropped)
    

    元组 ((1, 0), (0, 0)) 表示从顶部裁剪 1 行。如果要从底部裁剪,请改用((0, 1), (0, 0))。您可以查看documentation 以获取有关cropping 参数的更详细说明。

    【讨论】:

      猜你喜欢
      • 2019-01-11
      • 2021-03-26
      • 1970-01-01
      • 2019-04-06
      • 2017-01-04
      • 2017-11-27
      • 2019-05-14
      • 1970-01-01
      • 2017-07-19
      相关资源
      最近更新 更多