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
Comparing it to the target_label_clusters=[0,2,3,3,1,1,0,3,1,2],
codes[2]=1, its correct cluster should be 3; codes[8]=3, its correct cluster should be 2.
I can't figure out why such a simple feature can't be divided correctly.
The text was updated successfully, but these errors were encountered:
I made a fake
label_embeddings
to make it easier to see the problem.We can plot
label_embeddings
on 2D image. It should be partition like this.But I made a breakpoint at codes = clib.run_clustering, I got the codes as [1, 0, 1, 3, 2, 2, 1, 3, 3, 0]
Comparing it to the target_label_clusters=[0,2,3,3,1,1,0,3,1,2],
codes[2]=1, its correct cluster should be 3; codes[8]=3, its correct cluster should be 2.
I can't figure out why such a simple feature can't be divided correctly.
The text was updated successfully, but these errors were encountered: