Skip to main content
. Author manuscript; available in PMC: 2019 Apr 1.
Published in final edited form as: Proc IEEE Inst Electr Electron Eng. 2018 Feb 6;106(4):690–707. doi: 10.1109/JPROC.2017.2789319

Algorithm 2.

Re-clustering procedure given classifiers

Input: positive samples xi+, classifiers βl, current cluster assignment which assigns sample i to cluster l(i).
for all i ∈ {1, …, N+} do
  for all l ∈ {1, …, L} do
    calculate the projection ail of positive sample i onto the classifier for cluster l using only elements in a feature set 𝒞: ail=xi,𝒞+β𝒞l;
  end for
  update cluster assignment of sample i from l(i) to l(i)=arg maxlail, subject to
xi+βl(i)+β0l(i)xi+βl(i)+β0l(i). (5)
end for