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
Note that we don't want to repeatedly TrySplits, so we have to keep track of the previous value of nChanged and only TrySplits if nChanged<=threshold<oldnChanged.
Could the right approach be to check whether TrySplits did actually come up with any new clusters - and if not, to ignore the threshold and let nChanged go to zero (before TrySplits a final time)?
Generally I think this is a very good enhancement idea!!
Currently, TrySplits is tried when nChanged gets to 0, but actually it would be sensible to have a higher threshold. This could be a parameter.
Typically, TrySplits will lead to much larger nChanged, so this would potentially save quite a lot of computation.
The text was updated successfully, but these errors were encountered: