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
to be consistent with both papers. This also makes sense because in the getDynamicMu(), mu is set to be linear with "sigma", not with inverse of "sigma".
The text was updated successfully, but these errors were encountered:
Hi, I've got confused with this implementation. It seems that the implementation doesn't follow the Candes paper, why is the E_{k} part missing in updating L, X and E?
the parameter "mu" in Candes paper (http://statweb.stanford.edu/~candes/papers/RobustPCA.pdf, see Eqn. 5.1) is actually the inverse of "mu" in Zhou's paper (http://arxiv.org/abs/1001.2363, see Eqn. 15). Therefore, in the anomalydetection.cpp, it should be
double mu = 4_X.lpNorm<1>()/(m_n);
instead of
double mu = m_n / (4_X.lpNorm<1>());
to be consistent with both papers. This also makes sense because in the getDynamicMu(), mu is set to be linear with "sigma", not with inverse of "sigma".
The text was updated successfully, but these errors were encountered: