REVIEW 5 major objections 6 minor 52 references
Correlation Clustering with Overlap: a Heuristic Graph Editing Approach
T0 review · 5 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read The paper claims that allowing vertex splitting in 2-club cluster edge deletion produces a heuristic that outperforms the best-known correlation clustering algorithms on overlapping benchmark networks.
desk verdict Plausible heuristic for a problem variant this group defined in a companion paper, but the headline empirical claim rests on averages without variance, significance, or released artifacts. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The pivotal construction is the 2-club with vertex splitting, denoted 2CCEDVS: a graph is edited into a disjoint union of 2-clubs, where each 2-club is a set of vertices with pairwise distance at most two, and a vertex may be split so that different copies inherit different parts of its neighborhood, making overlap possible. The heuristic's engine is the random-walk ordering in Algorithm 2: for each candidate vertex $v$, form the transition matrix of a random walk on the closed 2-neighborhood of $v$, with additional weighted arcs from distance-2 vertices back to $v$ reflecting neighbors outside the neighborhood; take the 8th power of this matrix applied to the unit vector at $v$; order vertices by decreasing resulting probability. Then the algorithm scans prefixes of this order that form a 2-club, computes the cluster cost as the sum over vertices of (0 for outdegree 0, 1 edge deletion for outdegree 1, one split for outdegree $>1$) divided by cluster size, and selects the prefix minimizing cost. This cost-guided prefix selection is what converts the local spectral ordering into an actual cluster.
What would settle it
A concrete test: generate LFR graphs with average number of communities per vertex at 3 or higher and mixing parameter up to 0.5, run 2CCEDVS and ClusterONE, and check whether 2CCEDVS's F-score remains the highest; if ClusterONE wins, the claimed effectiveness is specific to low-overlap settings.
Extended reading notes
Core claim
The central claim is that the 2CCEDVS model—turn the graph into a disjoint union of 2-clubs using edge deletions and vertex splittings—yields better overlapping clusters than existing correlation clustering approaches. The paper's heuristic realizes this by repeatedly selecting an unassigned vertex, ordering the vertices in its closed 2-neighborhood by the stationary-like vector obtained after eight steps of a random walk, and then evaluating every prefix that is a 2-club with a cost function that charges 0 for vertices with no outside neighbors, 1 for deleting a single edge, and one split for vertices with multiple outside neighbors; the cheapest prefix becomes a cluster. In the extended LFR benchmark (average 137 vertices, 1150 edges, up to 1.93 communities per vertex), 2CCEDVS obtains F-score 0.9159, ahead of ClusterOne (0.8874), MCL (0.7789), 2CCED (0.6675), and KaPoCE (0.5959). On four biological networks, 2CCEDVS is second best in intra-cluster distance and generally best in inter-cluster distance, while KaPoCE, which optimizes for cliques, has the smallest intra-cluster distance but the worst F-score on LFR. The paper interprets these results as evidence that the relaxed 2-club model combined with vertex splitting is a more realistic and effective formulation of correlation clustering with overlap.
Load-bearing premise
The load-bearing premise is that ordering vertices by the eighth power of the random-walk transition matrix over the closed 2-neighborhood, then taking the cheapest prefix that forms a 2-club, yields clusters close to the true overlapping structure, and that the ordering remains a good proxy when graph size, overlap, and mixing parameters change; no sensitivity analysis is reported for the power or the prefix rule.
Editorial extensions
If this is right
- If the empirical claim holds, overlapping community detection can be performed without user-specified cluster counts or parameter tuning, and with higher F-score than flow-based (MCL), cohesiveness-based (ClusterONE), or clique-editing (KaPoCE) methods on LFR networks.
- The success of 2CCED over KaPoCE supports the broader thesis that relaxing clusters from cliques to bounded-diameter subgraphs is not only more flexible but also produces better solutions to the same editing task.
- Vertex splitting, previously used only with clique editing, is shown to be an effective operation for generating overlap, making it a candidate component for other graph-modification clustering problems.
- Because the cost function handles outdegree 0/1/>1 uniformly, the same heuristic extends to weighted graphs and to s-clubs with s > 2 with no change to the algorithm structure.
Reading between the lines
- An implication the paper does not explore: the 8th-power random-walk ordering may be replaceable by simpler local scores, such as degree or common-neighbor counts; if those matched the F-score, the method would reduce to a cheap greedy rule.
- The benchmark's average overlap is modest (1.30 communities per vertex, max 1.93); on datasets with genuinely high overlap (3+ memberships per vertex), the per-split cost may make 2CCEDVS overly conservative and lower its F-score relative to ClusterONE.
- The cost function normalizes by cluster size, which favors larger clusters; on LFR graphs with skewed community size distributions this could bias precision/recall, suggesting a testable variant that normalizes by perimeter instead of size.
- If the heuristic were reimplemented in C++ or GPU, the speed comparison would change materially; the paper's Python timings are not directly comparable to C/C++ baselines.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a new formulation of overlapping correlation clustering, 2CCEDVS (2-Club Cluster Edge Deletion with Vertex Splitting), in which clusters must have diameter at most two after edge deletions and vertices may be cloned to belong to multiple clusters. It presents two heuristics, Algorithm 1 for 2CCED and Algorithm 2 for 2CCEDVS, and evaluates them against MCL, ClusterONE, and KaPoCE on four biological gene-function networks (Table 2) and on an extended LFR overlapping benchmark (Table 3). The authors report that 2CCEDVS achieves the best average F-score (0.9159) on the LFR benchmark, ahead of ClusterONE (0.8874), and competitive intra- and inter-cluster distances on the biological networks, and they conclude that the model is notably effective for overlapping correlation clustering.
Significance. If the empirical claim holds, the paper would make a useful contribution: it combines a meaningful relaxation of cluster editing (diameter-2 clusters rather than cliques) with vertex splitting, and it compares against strong external baselines on external benchmarks without fitting parameters to the test data. The LFR comparison and biological network tables provide concrete evidence for the approach. The main significance is currently limited by the absence of statistical support, the incomplete pseudocode, and the lack of released code or generated instances, all of which prevent independent verification of the central claim.
major comments (5)
- [Section 4.2, Table 3] The central claim of 'notable effectiveness' (stated in Section 1 and repeated in Section 5) is not statistically established. The table reports only average F-score values; Section 4.2 does not state the number of LFR instances, the random seeds, the overlap parameters (on, om), or the per-instance scores. The reported advantage of 2CCEDVS over ClusterONE is 0.9159 versus 0.8874, a gap of 0.0285, while the graphs are small (average 137 vertices). Without standard deviations, per-instance data, or a paired significance test, the observed gap could be within stochastic variation of the generator. Please provide this information or weaken the conclusion accordingly.
- [Section 3, Algorithms 1 and 2] The pseudocode is not executable as written and cannot be used to reproduce Table 3. In Algorithm 1, 'add_s_club' is never defined and the cluster-update logic conflates vertices and clusters. In Algorithm 2, line 4 ('add an unassigned max degree one to X') cannot be executed when only one unassigned vertex remains; cost(bestCluster) is undefined because bestCluster is initialized to the empty set; and process(bestCluster) does not specify how a split copy is added to the assigned set or how the edited graph is updated. Please define the missing subroutines and state the termination and output conventions precisely.
- [Section 3, Algorithm 2] The ordering heuristic rests on an unverified assumption about the random walk. The text asserts that the 8th power of the transition matrix is 'enough to reach the stationary vector,' but no proof, convergence criterion, or sensitivity analysis is provided; for a periodic random walk, the 8th power need not be close to stationarity, and the graph H_v with added weighted arcs need not be irreducible. Because the cluster construction depends entirely on this ordering and on the 'cheapest prefix' rule, the empirical F-score advantage could depend on these ad-hoc choices. Please add a sensitivity analysis over the power parameter and prefix rule, or justify these choices theoretically.
- [Section 4] Reproducibility is currently blocked by missing artifacts. No code, generated LFR instances, or per-instance results are released; Section 4.2 only says 'multiple graphs' were generated, and the link provided points to the generic LFR benchmark repository rather than the exact instances used. This prevents independent checking of the averages in Table 3. Please release the implementation and benchmark instances, or include a complete per-instance table with seeds and parameter settings.
- [Section 4.1, Table 2] The biological-network evaluation is difficult to interpret because the paper does not define how average intra- and inter-cluster distances are computed, does not state whether higher or lower values are preferable, and reports a single run per algorithm with no variance. For example, on bio-CE-GT the 2CCEDVS inter-cluster distance is 3.24 versus 3.74-3.78 for the other algorithms; if larger inter-cluster distance indicates better separation, this is not 'competitive' as claimed in Section 4.3. Please clarify the definitions and either temper the claim or provide repeated-run statistics.
minor comments (6)
- [Abstract and Section 1] The sentence 'In some cases, without allowing data elements to belong to more than one cluster each, makes it hard to achieve any clustering via classical partition-based methods' is ungrammatical and should be revised.
- [Section 2] The phrase 'branching on each path of length whose endpoints are at distance three' is missing the intended path length; please fix the typo.
- [Section 4.2] The phrase 'the number of edges of vertices from 50 to 200' should presumably read 'the number of vertices from 50 to 200'.
- [Table 3] The 'Graph Properties' columns are not algorithm-specific and are placed in the same table as per-algorithm results; consider separating the benchmark statistics into a distinct table or caption.
- [Algorithm 1] The while loop over a sorted score dictionary is redundant because the for loop over score already visits each vertex; please clarify the intended control flow.
- [Section 4.3] The sentence 'Benchmarks show that for the same program, C and C++ are faster than Java and Java is many times faster than Python' is awkward; consider rephrasing to 'benchmark comparisons show...'
Circularity Check
No significant circularity: the central effectiveness claim rests on external benchmarks and external baselines, not on fitted inputs or self-cited predictions.
full rationale
The paper's claimed derivation chain is an empirical evaluation, not a derivation from the problem definition. 2CCEDVS is a hand-designed heuristic (Algorithm 2: random-walk ordering on the closed 2-neighborhood, cheapest 2-club prefix, cost = outdegree sum divided by |X|); no parameter is fitted to the LFR benchmark or biological networks, and no benchmark result is defined in terms of the heuristic's own cost. The companion-paper citation [35] ('This problem was also shown to be NP-Hard, but fixed-parameter tractable (FPT) when s = 2 [35]' and 'the only known exact (fixed-parameter) algorithm presented in [35] is far from practical') is background used only to motivate a heuristic; it is not folded into Table 2 or Table 3. The F-score comparison is against external implementations (ClusterONE, MCL, KaPoCE) on an external LFR generator, and the biological comparison uses intra/inter-cluster distances. The paper even flags its own strongest result as 'a surprising outcome that we have not anticipated. This calls for further research and scrutiny,' which is inconsistent with back-fitting. The under-specification of Algorithm 2 (e.g., 'add an unassigned max degree one to X' when one vertex remains, undefined cost of empty bestCluster, unspecified process(bestCluster)) is a reproducibility and correctness risk, but not a circularity. Accordingly, no circular step can be exhibited with a specific reduction.
Assumptions & free parameters
free parameters (2)
- random walk power =
8
- cost threshold rule =
outdegree 1 => delete, outdegree >1 => split
assumptions (3)
- domain assumption 2CCEDVS is NP-hard and FPT for s=2 (cited to [35])
- ad hoc to paper The 8th power of the random walk transition matrix approximates the stationary distribution on the closed 2-neighborhood
- domain assumption F-score on LFR ground truth is a reliable quality measure, and intra/inter cluster distances are meaningful on biological networks
Cite this review
Pith. "Pith review of Correlation Clustering with Overlap: a Heuristic Graph Editing Approach." pith.science (2026). https://pith.science/paper/7QGR7BY3
@misc{pith2026241202704,
author = {Pith},
title = {Pith review of: Correlation Clustering with Overlap: a Heuristic Graph Editing Approach},
year = {2026},
howpublished = {\url{https://pith.science/paper/7QGR7BY3}},
note = {Machine review of arXiv:2412.02704}
}
read the original abstract
Correlation clustering seeks a partition of the vertex set of a given graph/network into groups of closely related, or just close enough, vertices so that elements of different groups are not close to each other. The problem has been previously modeled and studied as a graph editing problem, namely Cluster Editing, which assumes that closely related data elements must be adjacent. As such, the main objective (of the Cluster Editing problem) is to turn clusters into cliques as a way to identify them. This is to be obtained via two main edge editing operations: additions and deletions. There are two problems with the Cluster Editing model that we seek to address in this paper. First, ``closely'' related does not necessarily mean ``directly'' related. So closeness should be measured by relatively short distance. As such, we seek to turn clusters into (sub)graphs of small diameter. Second, in real applications, a data element can belong, or have roles, in multiple groups. In some cases, without allowing data elements to belong to more than one cluster each, makes it hard to achieve any clustering via classical partition-based methods. We address this latter problem by allowing vertex cloning, also known as vertex splitting. Heuristic methods for the introduced problem are presented along with experimental results showing the effectiveness of the proposed model and algorithmic approach.
Figures
Reference graph
Works this paper leans on
-
[35]
On the Complexity of 2-club Cluster Editing with Vertex Splitting
Faisal N. Abu-Khzam, Tom Davot, Lucas Isenmann, and Serg io Thoumi. On the complexity of 2-club cluster editing with vertex splitting . CoRR, abs/2411.04846, 2024
work page Pith review arXiv 2024
-
[1]
Spectral clustering with graph neural networks for graph pooling, 2020
Filippo Maria Bianchi, Daniele Grattarola, and Cesare Al ippi. Spectral clustering with graph neural networks for graph pooling, 2020
work page 2020
-
[2]
Deep clustering for unsupervised learning of visual features, 2 019
Mathilde Caron, Piotr Bojanowski, Armand Joulin, and Mat thijs Douze. Deep clustering for unsupervised learning of visual features, 2 019
-
[3]
Visual categorization with bags of keypoints
Gabriella Csurka, Christopher Dance, Lixin Fan, Jutta Wi llamowski, and Cédric Bray. Visual categorization with bags of keypoints. In Workshop on statistical learning in computer vision, ECCV , volume 1, pages 1–2. Prague, 2004
work page 2004
-
[4]
A k-means clusterin g algorithm
John A Hartigan, Manchek A Wong, et al. A k-means clusterin g algorithm. Applied statistics, 28(1):100–108, 1979
work page 1979
- [5]
-
[6]
Nikhil Bansal, A vrim Blum, and Shuchi Chawla. Correlatio n clustering. Machine learning, 56(1):89–113, 2004
work page 2004
-
[7]
Cluster graph mo dification problems
Ron Shamir, Roded Sharan, and Dekel Tsur. Cluster graph mo dification problems. Discrete Applied Mathematics , 144(1-2):173–182, 2004
work page 2004
Show all 52 references
-
[8]
Fixed- parameter algorithms for cluster vertex deletion
Falk Hüffner, Christian Komusiewicz, Hannes Moser, and Ro lf Niedermeier. Fixed- parameter algorithms for cluster vertex deletion. Theory of Computing Systems , 47(1):196–217, 2010
2010
-
[9]
The node-deletion pr oblem for hereditary properties is np-complete
John M Lewis and Mihalis Yannakakis. The node-deletion pr oblem for hereditary properties is np-complete. Journal of Computer and System Sciences , 20(2):219– 230, 1980
1980
-
[10]
Novel ap- proaches for analyzing biological networks
Balabhaskar Balasundaram, Sergiy Butenko, and Svyatos lav Trukhanov. Novel ap- proaches for analyzing biological networks. Journal of Combinatorial Optimization , 10(1):23–39, 2005
2005
-
[11]
Detection of protein complexes in protein interaction networks using n-clubs
Srinivas Pasupuleti. Detection of protein complexes in protein interaction networks using n-clubs. In European Conference on Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics , pages 153–164. Springer, 2008
2008
-
[12]
On editing graphs in to 2-club clusters
Hong Liu, Peng Zhang, and Daming Zhu. On editing graphs in to 2-club clusters. In Frontiers in Algorithmics and Algorithmic Aspects in Infor mation and Manage- ment, pages 235–246. Springer, 2012
2012
-
[13]
Splitting an orderin g into a partition to minimize diameter
Charles J Alpert and Andrew B Kahng. Splitting an orderin g into a partition to minimize diameter. Journal of Classification , 14(1):51–74, 1997
1997
-
[14]
On the complexity of graph clustering with bounded diameter
Jou-Ming Chang, Jinn-Shyong Yang, and Sheng-Lung Peng. On the complexity of graph clustering with bounded diameter. In 2014 international computer science and engineering conference (ICSEC) , pages 18–22. IEEE, 2014
2014
-
[15]
Bounded diameter clustering s cheme for protein interaction networks
Nassim Sohaee and C Forst. Bounded diameter clustering s cheme for protein interaction networks. In Procs. World Congress on Engineering and Computer Science, volume 1, 2009
2009
-
[16]
Efficient cluster ing algorithms for self- organizing wireless sensor networks
Rajesh Krishnan and David Starobinski. Efficient cluster ing algorithms for self- organizing wireless sensor networks. Ad Hoc Networks , 4(1):36–59, 2006
2006
-
[17]
Minimum sum of diame ters clustering
Pierre Hansen and Brigitte Jaumard. Minimum sum of diame ters clustering. Jour- nal of Classification , 4(2):215–226, 1987. 12 Abu-Khzam, Isenmann and Thoumi
1987
-
[18]
Clustering to minimi ze the sum of cluster diameters
Moses Charikar and Rina Panigrahy. Clustering to minimi ze the sum of cluster diameters. In Proceedings of the thirty-third annual ACM symposium on The ory of computing, pages 1–10, 2001
2001
-
[19]
Geometric clustering to minimize the sum of clust er sizes
Vittorio Bilo, Ioannis Caragiannis, Christos Kaklaman is, and Panagiotis Kanel- lopoulos. Geometric clustering to minimize the sum of clust er sizes. In Algorithms– ESA 2005: 13th Annual European Symposium, Palma de Mallorca , Spain, October 3-6, 2005. Proceedings 13 , pages 4...
2005
-
[20]
Detect ing overlapping protein complexes in protein-protein interaction networks
Tamás Nepusz, Haiyuan Yu, and Alberto Paccanaro. Detect ing overlapping protein complexes in protein-protein interaction networks. Nature methods, 9(5):471–472, 2012
2012
-
[21]
Finding communities by cluster ing a graph into over- lapping subgraphs
Jeffrey Baumes, Mark K Goldberg, Mukkai S Krishnamoorthy , Malik Magdon- Ismail, and Nathan Preston. Finding communities by cluster ing a graph into over- lapping subgraphs. IADIS AC , 5:97–104, 2005
2005
-
[22]
Graph-based data clustering with overlaps
Michael R Fellows, Jiong Guo, Christian Komusiewicz, Ro lf Niedermeier, and Jo- hannes Uhlmann. Graph-based data clustering with overlaps . Discrete Optimiza- tion, 8(1):2–17, 2011
2011
-
[23]
An algorithm to find overlapping communit y structure in net- works
Steve Gregory. An algorithm to find overlapping communit y structure in net- works. In European conference on principles of data mining and knowle dge discov- ery, pages 91–102. Springer, 2007
2007
-
[24]
Cluster editing with vertex splitting
Faisal N Abu-Khzam, Judith Egan, Serge Gaspers, Alexis S haw, and Peter Shaw. Cluster editing with vertex splitting. In International Symposium on Combinatorial Optimization, pages 1–13. Springer, 2018
2018
-
[25]
Abu-Khzam, Emmanuel Arrighi, Matthias Benter t, Pål Grønås Drange, Judith Egan, Serge Gaspers, Alexis Shaw, Peter Shaw, Blair D
Faisal N. Abu-Khzam, Emmanuel Arrighi, Matthias Benter t, Pål Grønås Drange, Judith Egan, Serge Gaspers, Alexis Shaw, Peter Shaw, Blair D . Sullivan, and Petra Wolf. Cluster editing with vertex splitting, 2023
2023
-
[26]
Introduction to graph theory , volume 2
Douglas Brent West et al. Introduction to graph theory , volume 2. Prentice hall Upper Saddle River, 2001
2001
-
[27]
Cluster deletion revisited
Dekel Tsur. Cluster deletion revisited. Information Processing Letters, 173:106171, 2022
2022
-
[28]
A golden ratio parameterized algorit hm for cluster editing
Sebastian Böcker. A golden ratio parameterized algorit hm for cluster editing. Journal of Discrete Algorithms , 16:79–89, 2012
2012
-
[29]
Cluster editing with overlapping communities
Emmanuel Arrighi, Matthias Bentert, Pål Grønås Drange, Blair D Sullivan, and Petra Wolf. Cluster editing with overlapping communities. In 18th Interna- tional Symposium on Parameterized and Exact Computation (I PEC 2023). Schloss- Dagstuhl-Leibniz Zentrum für Informatik, 2023
2023
-
[30]
Abu-Khzam, Norma Makarem, and Maryam Shehab
Faisal N. Abu-Khzam, Norma Makarem, and Maryam Shehab. A n improved fixed-parameter algorithm for 2-club cluster edge deletion . Theor. Comput. Sci. , 958:113864, 2023
2023
-
[31]
Algorithms for 2-club cluster deletion prob lems using automated gen- eration of branching rules
Dekel Tsur. Algorithms for 2-club cluster deletion prob lems using automated gen- eration of branching rules. Theoretical Computer Science , 984:114321, 2024
2024
-
[32]
Graph clustering by flow simulation
Stijn Van Dongen. Graph clustering by flow simulation. PhD thesis, University of Utrecht, 2000
2000
-
[33]
Pace solver de- scription: Kapoce: A heuristic cluster editing algorithm
Thomas Bläsius, Philipp Fischbeck, Lars Gottesbüren, M ichael Hamann, Tobias Heuer, Jonas Spinner, Christopher Weyand, and Marcus Wilhe lm. Pace solver de- scription: Kapoce: A heuristic cluster editing algorithm. In 16th International Sym- posium on Parameterized and Exact Co...
2021
-
[34]
The pace 2021 parameterized algorithms and computational expe riments challenge: Correlation Clustering with Overlap: a Heuristic Graph Edi ting Approach 13 Cluster editing
Leon Kellerhals, Tomohiro Koana, André Nichterlein, an d Philipp Zschoche. The pace 2021 parameterized algorithms and computational expe riments challenge: Correlation Clustering with Overlap: a Heuristic Graph Edi ting Approach 13 Cluster editing. In 16th International Sympos...
2021
-
[36]
Rossi and Nesreen K
Ryan A. Rossi and Nesreen K. Ahmed. The network data repos itory with interac- tive graph analytics and visualization. In AAAI, 2015
2015
-
[37]
Gscluster: network-weighted gene -set clustering analysis
Sora Yoon, Jinhwan Kim, Seon-Kyu Kim, Bukyung Baik, Sang -Mun Chi, Seon- Young Kim, and Dougu Nam. Gscluster: network-weighted gene -set clustering analysis. BMC genomics , 20:1–14, 2019
2019
-
[38]
Clustering of the self-organi zing map using a clustering validity index based on inter-cluster and intra -cluster density
Sitao Wu and Tommy WS Chow. Clustering of the self-organi zing map using a clustering validity index based on inter-cluster and intra -cluster density. Pattern Recognition, 37(2):175–188, 2004
2004
-
[39]
P erformance eval- uation of distance metrics in the clustering algorithms
Vijay Kumar, Jitender Kumar Chhabra, and Dinesh Kumar. P erformance eval- uation of distance metrics in the clustering algorithms. INFOCOMP Journal of Computer Science, 13(1):38–52, 2014
2014
-
[40]
An ensemble framework for clustering protein–protein interaction networks
Sitaram Asur, Duygu Ucar, and Srinivasan Parthasarathy . An ensemble framework for clustering protein–protein interaction networks. Bioinformatics, 23(13):i29–i40, 2007
2007
-
[41]
Ad-cluster: Augmented discriminative clus tering for domain adap- tive person re-identification
Yunpeng Zhai, Shijian Lu, Qixiang Ye, Xuebo Shan, Jie Che n, Rongrong Ji, and Yonghong Tian. Ad-cluster: Augmented discriminative clus tering for domain adap- tive person re-identification. In Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition ,...
2020
-
[42]
Clustering validity checking methods: Part ii
Maria Halkidi, Yannis Batistakis, and Michalis Vazirgi annis. Clustering validity checking methods: Part ii. ACM Sigmod Record, 31(3):19–27, 2002
2002
-
[43]
Benchmark graphs for testing community detection algorithms
Andrea Lancichinetti, Santo Fortunato, and Filippo Rad icchi. Benchmark graphs for testing community detection algorithms. Phys. Rev. E , 78:046110, Oct 2008
2008
-
[44]
A comparison of common programming languages used in bioinformatics
Mathieu Fourment and Michael R Gillings. A comparison of common programming languages used in bioinformatics. BMC bioinformatics , 9:1–9, 2008
2008
-
[45]
Ranking programming languages by energy efficiency
Rui Pereira, Marco Couto, Francisco Ribeiro, Rui Rua, Já come Cunha, João Paulo Fernandes, and João Saraiva. Ranking programming languages by energy efficiency. Science of Computer Programming , 205:102609, 2021
2021
-
[46]
Hélio Almeida, Dorgival Guedes, Wagner Meira, and Moham med J Zaki. Is there a best quality metric for graph clusters? In Machine Learning and Knowledge Dis- covery in Databases: European Conference, ECML PKDD 2011, A thens, Greece, September 5-9, 2011. Proceedings, Part I 11 ...
2011
-
[47]
Analysis of network clustering algorithms and cluster quality metri cs at scale
Scott Emmons, Stephen Kobourov, Mike Gallant, and Katy B örner. Analysis of network clustering algorithms and cluster quality metri cs at scale. PloS one , 11(7):e0159161, 2016
2016
-
[48]
On the complexity of multi-paramete rized cluster editing
Faisal N Abu-Khzam. On the complexity of multi-paramete rized cluster editing. Journal of Discrete Algorithms , 45:26–34, 2017
2017
-
[49]
Combinatorial text classification: the effect of multi-parameterized corr elation clustering
Joseph R Barr, Peter Shaw, Faisal N Abu-Khzam, and Jikang Chen. Combinatorial text classification: the effect of multi-parameterized corr elation clustering. In 2019 First International Conference on Graph Computing (GC) , pages 29–36. IEEE, 2019
2019
-
[50]
Vulnerability rating of source code with token embeddin g and combinatorial algorithms
Joseph R Barr, Peter Shaw, Faisal N Abu-Khzam, Tyler That cher, and Sheng Yu. Vulnerability rating of source code with token embeddin g and combinatorial algorithms. International Journal of Semantic Computing , 14(04):501–516, 2020. 14 Abu-Khzam, Isenmann and Thoumi
2020
-
[51]
Barr, and Faisal N
Peter Shaw, Joseph R. Barr, and Faisal N. Abu-Khzam. Anom aly detection via correlation clustering. In 16th IEEE International Conference on Semantic Com- puting, ICSC 2022, Laguna Hills, CA, USA, January 26-28, 202 2, pages 307–313. IEEE, 2022
2022
-
[52]
Abu-Khzam, Michael A
Faisal N. Abu-Khzam, Michael A. Langston, Amer E. Mouawa d, and Clinton P. Nolan. A hybrid graph representation for recursive backtra cking algorithms. In Der-Tsai Lee, Danny Z. Chen, and Shi Ying, editors, Frontiers in Algorithmics, 4th International Workshop, F A W 2010, Wuh...
2010
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.