I am trying to use a deconvolution layer or a Conv2DTranspose, but this error 
occurs. 
Code:
    self.up_sample = nn.Conv2DTranspose(c, kernel_size=3, strides=2, padding=1, 
groups=c)
Error:
    src/operator/nn/deconvolution.cc:192: Check failed: dshape_nchw[1] % 
param_.num_group == 0U (255 vs. 0) : input num_filter must divide group size

I checked c right before the line and it was not 255 but 320. Also c divides c 
in any case. Here my understanding is that dshape_nchw[1] stands for the value 
of channel. Am I understanding the error in a wrong way? What should I do to 
avoid the error?





---
[Visit Topic](https://discuss.mxnet.apache.org/t/deconvolution-error/6832/1) or 
reply to this email to respond.

You are receiving this because you enabled mailing list mode.

To unsubscribe from these emails, [click 
here](https://discuss.mxnet.apache.org/email/unsubscribe/41e0f6839b8d8df07f9b631b4dd52d63eb99c9dafe991f5b999cb6716bec64e0).

Reply via email to