Ishitori commented on issue #12434: Problem in mx.sym.Deconvolution() URL: https://github.com/apache/incubator-mxnet/issues/12434#issuecomment-422116339 Yes, I confirm there is an issue. bias is defined in function signature, but if you try to actually put there a symbol you will get: ``` mxnet.base.MXNetError: [11:09:30] src/core/symbolic.cc:72: Symbol.ComposeKeyword argument name bias not found. Candidate arguments: [0]data [1]weight ``` The minimal reproduce example is: ``` import mxnet as mx deconv = mx.sym.Deconvolution(data=mx.sym.var('data'), kernel=(3, 3), num_filter=1, bias=mx.symbol.var("bias", init=mx.initializer.Normal())) ``` @marcoabreu, please, retag
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
