Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

ConvTranspose3D with 2 dim #253

Open
JCuomo opened this issue Dec 12, 2019 · 0 comments
Open

ConvTranspose3D with 2 dim #253

JCuomo opened this issue Dec 12, 2019 · 0 comments

Comments

@JCuomo
Copy link

JCuomo commented Dec 12, 2019

Conv3DTranspose seems to have a bug

`
model = Sequential()

model.add(Conv3D(filters=128, kernel_size=(4,4,4), strides=(2,2,2), padding='same',
input_shape=(10, 64, 64, 1)))

model.add(Conv3DTranspose(filters=1, kernel_size=(3,4,4), strides=(1,2,2), padding='same'))

adam = keras.optimizers.Adam(lr=0.0001, beta_1=0.5, beta_2=0.9, epsilon=1.0e-08, clipnorm=50)
model.compile(optimizer=adam, loss='mse')
`

MXNetError: [21:55:12] src/operator/nn/deconvolution.cc:379: Check failed: param_.kernel.ndim() == param_.dilate.ndim() (3 vs. 2) : Dilate must have the same number of dimensions with kernel_size,but kernel_size is set to [3,4,4] while dilate is [1,1]

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant