You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in ODEFnc(), for the Parameter can not be augmented assignment directly, or else it would have an error "cannot assign ‘torch.cuda.FloatTensor’ as parameter ‘self.w’ (torch.nn.Parameter or None expected)"
You are right, but we found such operation led to suboptimal convergence. And a simple alternative is to just delete this line, which means we don’t constrain $self.w$ to be orthogonal, and it works in practice. We have fixed the bug in this way.
Thanks for your attention.
There is a bug in ODEFnc(), for the Parameter can not be augmented assignment directly, or else it would have an error "cannot assign ‘torch.cuda.FloatTensor’ as parameter ‘self.w’ (torch.nn.Parameter or None expected)"
it should be :
The text was updated successfully, but these errors were encountered: