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
The very first step of the algorithm, before the loops even begin, is to whiten the columns of the input matrix S. This means subtracting off the mean and rescaling the columns to have unit norms.
The very first step of the algorithm, before the loops even begin, is to whiten the columns of the input matrix
S
. This means subtracting off the mean and rescaling the columns to have unit norms.Luckily, thunder-project has the perfect function: http://thunder-project.org/thunder/docs/generated/thunder.RowMatrix.html#thunder.RowMatrix.zscore . Make sure we specify
axis = 1
(the column axis) and this will perform the whitening.The text was updated successfully, but these errors were encountered: