Closed mrkn closed 5 years ago
Opened https://github.com/mrkn/mxnet.rb/pull/41.
It turns out MXSymbolSetAttrs
does not exist. The Python code was (I believe, incorrectly) modified, however the modified method is redefined in all existing base classes, so the error wasn't noticed. In any case, this PR achieves our objectives.
Resolved by #41
The current implementation of
MXNet:Symbol#set_attributes
usesMXSymbolSetAttr
for each key-value pair of specified attributes. It can be rewritten to callMXSymbolSetAttrs
.