| 345 | |
| 346 | |
| 347 | class ClusteringAlgorithm(ABC): |
| 348 | @abstractmethod |
| 349 | def perform_clustering(self, embeddings: np.ndarray, **kwargs) -> List[List[int]]: |
| 350 | pass |
| 351 | def _pack_single_community_describe( |
| 352 | entitys, |
| 353 | relations, |
nothing calls this directly
no outgoing calls
no test coverage detected