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 2017/11/10 08:50:23 UTC

[GitHub] liumilan opened a new issue #8608: how can i print all weights in monitor

liumilan opened a new issue #8608: how can i print all weights in monitor
URL: https://github.com/apache/incubator-mxnet/issues/8608
 
 
   I just use monitor to print the weights
   Because lots of weights,it can't print all weights like that 
   [[ 10.5]
    [  0. ]
    [  0. ]
    ..., 
    [  0. ]
    [  0. ]
    [  0. ]]
   how can i modify monitor code?My code is that:
   def print_weight(d):
           result = " "
           for i in range(0,d.size):
               result += str(d[i]) + " "
           return result
         and it will report error
   

----------------------------------------------------------------
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