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
In line 310: if n_centroids < k: should be if n_centroids-k <2.
Reason: If not, it will incur bug in line 313, where kth should be smaller than n_centroids.
The text was updated successfully, but these errors were encountered:
https://github.com/histocartography/histocartography/blob/c8ecd8a74caf33057a2da291fa306500387d0ae0/histocartography/preprocessing/feature_extraction.py#L310
In line 310: if n_centroids < k: should be if n_centroids-k <2.
Reason: If not, it will incur bug in line 313, where kth should be smaller than n_centroids.
The text was updated successfully, but these errors were encountered: