anirudhacharya commented on issue #10329: Can't print params on gpu with 
collect_params
URL: 
https://github.com/apache/incubator-mxnet/issues/10329#issuecomment-386125785
 
 
   This issue is not reproducible with mxnet v1.1. Ran the following code -
   ```python
   import mxnet as mx
   from mxnet import gluon
   ctx = mx.gpu()
   net = gluon.nn.Sequential()
   with net.name_scope():
     net.add(gluon.rnn.LSTM(3, 1))
   net.collect_params().initialize(mx.init.Xavier(), ctx=ctx)
   params = net.collect_params()
   print(params)
   ```
   
   @nswamy @sandeep-krishnamurthy Please label this - "Gluon". And close the 
issue.

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to