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
(1) line 20 should use a much smaller epsilon than 1e-1, more like 1e-6
(2) lines 27 and 28 should be:
invP = torch.mm(cv, invdiag)
invP = torch.mm(invP, cv:t())
to get the correct inverse.
The text was updated successfully, but these errors were encountered:
Two bugs in whitening.lua
(1) line 20 should use a much smaller epsilon than 1e-1, more like 1e-6
(2) lines 27 and 28 should be:
invP = torch.mm(cv, invdiag)
invP = torch.mm(invP, cv:t())
to get the correct inverse.
The text was updated successfully, but these errors were encountered: