Code for fast combinatorial methods to solve cluster deletion (DegMFP and RatMFP) and combinatorial solver for STC-LP.
Repo for the ICML 2024 paper:
Combinatorial Approximations for Cluster Deletion: Simpler, Faster, and Better
The experiments can be found in the Experiments
folder.
run-cd-functions.jl
contains the code to run a single instance of the cluster deletion problem with a given method.
The experiments are separated between CD-experiments
and merge-experiments
, with
The CD-experiments
folder contains the experiments for the cluster deletion problem.
run_many_main.jl
runs all the experiments from the papercd-table-print-results.jl
prints the results from the experiments in a table format and plots the figuresmpf-tests.jl
can be used to run the MFP methods faster
You can find the implementations for the deterministic MFP methods (DegMFP and RatMFP) in src/run_cd_functions.jl
.
The implementation for the combinatorial solver for STC-LP can be found in src/cd_lp_minst_relaxations.jl
.
This repo contains some small toy graphs in the folder data/smallgraphs
.
Most of the standardized graphs used in the experiments can be downloaded from google drive. These graphs are in the format needed to run the experiments.
Instead, the graphs used in the paper can be downloaded from suitesparse.com and standardized using the data/standardize-snap-graphs.jl
script.
Our implementation is based on nveldt's repo FastCC-via-STC.
If you find our work helpful, please cite our paper:
@InProceedings{pmlr-v235-balmaseda24a,
title = {Combinatorial Approximations for Cluster Deletion: Simpler, Faster, and Better},
author = {Balmaseda, Vicente and Xu, Ying and Cao, Yixin and Veldt, Nate},
booktitle = {Proceedings of the 41st International Conference on Machine Learning},
pages = {2586--2606},
year = {2024},
editor = {Salakhutdinov, Ruslan and Kolter, Zico and Heller, Katherine and Weller, Adrian and Oliver, Nuria and Scarlett, Jonathan and Berkenkamp, Felix},
volume = {235},
series = {Proceedings of Machine Learning Research},
month = {21--27 Jul},
publisher = {PMLR},
pdf = {https://raw.githubusercontent.com/mlresearch/v235/main/assets/balmaseda24a/balmaseda24a.pdf},
url = {https://proceedings.mlr.press/v235/balmaseda24a.html},
}