This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Problem in mx.sym.Deconvolution() #12434
Unanswered
ducheng678
asked this question in
Q&A
Replies: 2 comments
-
@mxnet-label-bot [Symbol, Question] |
Beta Was this translation helpful? Give feedback.
0 replies
-
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:
The minimal reproduce example is:
@marcoabreu, please, retag |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This is the function in DOC:
mxnet.symbol.Deconvolution(data=None, weight=None, bias=None, kernel=_Null, stride=_Null, dilate=_Null, pad=_Null, adj=_Null, target_shape=_Null, num_filter=_Null, num_group=_Null, workspace=_Null, no_bias=_Null, cudnn_tune=_Null, cudnn_off=_Null, layout=_Null, name=None, attr=None, out=None, **kwargs)
This function has bias augment, but when I add bias in my code, I get following error:
mxnet.base.MXNetError: [14:57:26] c:\jenkins\workspace\mxnet-tag\mxnet\3rdparty\nnvm\src\core\symbolic.cc:72: Symbol.ComposeKeyword argument name bias not found. Candidate arguments: [0]data [1]weight
Beta Was this translation helpful? Give feedback.
All reactions