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

[ Full content available at: 
https://github.com/apache/incubator-mxnet/issues/12434 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to