我正在将一个项目从 Keras 1.x 迁移到 2.x。
在代码中,keras.backend.conv2d
在 1.x 中运行良好的操作现在在 2.x 中崩溃。
convs = K.conv2d(a, b, padding='valid', data_format='channels_first')
输入张量的形状a
和b
都是(1024, 4, 1, 1)
,输出张量的形状(1024, 1024, 1, 1)
在 1.x 中。
使用 2.x 我收到以下错误:
ValueError: CorrMM: impossible output shape
bottom shape: 1024 x 4 x 1 x 1
weights shape: 1 x 1 x 1024 x 4
top shape: 1024 x 1 x -1022 x -2
Apply node that caused the error: CorrMM{valid, (1, 1), (1, 1), 1 False}(Print{message='a', attrs=('__str__',), global_fn=<function DEBUG_printTensorShape at 0x00000272EF1FAD08>}.0, Subtensor{::, ::, ::int64, ::int64}.0)
Toposort index: 30
Inputs types: [TensorType(float32, (False, False, True, True)), TensorType(float32, (True, True, False, False))]
Inputs shapes: [(1024, 4, 1, 1), (1, 1, 1024, 4)]
我正在使用 Theano 后端,并设置channels_first
在K.set_image_data_format
和conv2d
.