You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2018/05/02 21:23:08 UTC

[GitHub] anirudhacharya commented on issue #10329: Can't print params on gpu with collect_params

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


With regards,
Apache Git Services