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 2019/03/29 14:18:21 UTC

[GitHub] [incubator-mxnet] two-names opened a new issue #14564: Features of autograd.record

two-names opened a new issue #14564: Features of autograd.record
URL: https://github.com/apache/incubator-mxnet/issues/14564
 
 
   Hello!
   
   What could be the problem?
   I have saved gluon model after 250 epochs like (model.save_parameters(...)).
   After that I try to get output from load_params model:
   
   First way is:
   ```
   with autograd.record():
       outputs = [model(X) for X in data]
   ```
   Second way is just:
   `outputs = [model(X) for X in data]  ` 
   
   First way gives better predictions.
   
   What could be the reason?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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