seujung edited a comment on issue #13847: Spectralnormalization GAN seems to be 
seriously broken
URL: 
https://github.com/apache/incubator-mxnet/issues/13847#issuecomment-453888598
 
 
   The problem is related to the update u matrix.
   I found that parameter is not updated using setattr method.
   When changing code like this, the paramter is updated successfully.
   
   ```
           self.params.setattr('u', _u)
   ```
   ```
            with autograd.pause():
                self.u.set_data(_u)
   ```
   

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

Reply via email to