From 8f63cf9f41bbdb8d55cd4679872d2b4ae2129324 Mon Sep 17 00:00:00 2001 From: YurenHao0426 Date: Tue, 24 Feb 2026 08:40:49 +0000 Subject: EC-SBM community detection analysis: full pipeline and writeup Implement community detection on 3 EC-SBM networks (polblogs, topology, internet_as) using 5 methods (Leiden-Mod, Leiden-CPM at 0.1 and 0.01, Infomap, graph-tool SBM). Compute AMI/ARI/NMI accuracy, cluster statistics, and generate figures and LaTeX report. --- .gitignore | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..02d9fe6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Large data files +data/networks/ +data/networks.zip +data/polblogs/edge.tsv +data/polblogs/com_gt.tsv +data/topology/edge.tsv +data/topology/com_gt.tsv +data/internet_as/edge.tsv +data/internet_as/com_gt.tsv + +# Network evaluation repo (external) +network_evaluation/ + +# Python +__pycache__/ +*.pyc + +# LaTeX build artifacts +writeup/*.aux +writeup/*.bbl +writeup/*.blg +writeup/*.log +writeup/*.out +writeup/*.toc +writeup/*.fls +writeup/*.fdb_latexmk +writeup/*.synctex.gz + +# OS +.DS_Store + +# Claude internal +.claude/ -- cgit v1.2.3