ThomasDelteil commented on issue #11278: global name 'multiply' is not defined when using LBSGD URL: https://github.com/apache/incubator-mxnet/issues/11278#issuecomment-402881851 @xmfbit I confirm there is indeed a bug with the 'lars' warmup strategy. I am not sure the optimizer has been properly tested, as that would have been picked up instantly @ashokei could you follow up on that? Thanks! ``` ~/anaconda3/lib/python3.6/site-packages/mxnet/optimizer.py in _l2norm(self, v) 767 def _l2norm(self, v): 768 "inner product implementation" --> 769 norm = multiply(v, v).asnumpy().sum() 770 return norm 771 NameError: name 'multiply' is not defined ```
---------------------------------------------------------------- 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
