Skip to content
Closed
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8b09aa4
Change default AMST approx bound value to 1.1
KIwabuchi Aug 7, 2026
a8e6204
Use MFC by default
KIwabuchi Aug 7, 2026
805652b
Brush up scripts
KIwabuchi Aug 8, 2026
6932cc6
Update bench scripts
KIwabuchi Aug 8, 2026
3ad72d6
Update bench scripts
KIwabuchi Aug 8, 2026
e10e513
Minor code brush ups
KIwabuchi Aug 10, 2026
5c17de2
Update bench script
KIwabuchi Aug 11, 2026
8189ff9
Assign clusters to noise points
KIwabuchi Aug 13, 2026
495a903
Add copy_pm_datastore
KIwabuchi Aug 13, 2026
a7f510d
Fix build error in cluster_noise_points.cpp
KIwabuchi Aug 13, 2026
726511f
Improve run_clams_bench.py
KIwabuchi Aug 13, 2026
756c207
Enhance clustering evaluation and correlation analysis
KIwabuchi Sep 4, 2026
cc8f3e2
Merge remote-tracking branch 'upstream/develop' into feature/brush_up…
KIwabuchi Sep 4, 2026
0c57721
Enhance documentation for kNNG functions and correlation evaluation
KIwabuchi Sep 4, 2026
b4f47fd
Refactor clustering evaluation output and streamline echo statements …
KIwabuchi Sep 4, 2026
c200068
Refactor clustering execution logic into a dedicated function for imp…
KIwabuchi Sep 4, 2026
2f02c26
Minor bugfix in cluster_noise_points.cpp
KIwabuchi Sep 4, 2026
c030037
Minor bugfix in cluster_noise_points.cpp
KIwabuchi Sep 4, 2026
4dda3ca
Brush up benchmark scripts
KIwabuchi Sep 4, 2026
15acaa4
Brush up benchmark scripts
KIwabuchi Sep 4, 2026
b0b78d9
Brush up benchmark scripts
KIwabuchi Sep 4, 2026
17ec574
Update output header in extract_clams_clustering_time.sh
KIwabuchi Sep 5, 2026
c66d607
Merge remote-tracking branch 'upstream/develop' into feature/brush_up…
KIwabuchi Sep 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion script/benchmark/extract_clams_clustering_time.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [[ $# -eq 0 ]]; then
exit 1
fi

printf "kNNG k,nodes,tasks/node,kNNG (s),MFC (s),AMST (s),CLAMS-HDBSCAN (s),Assigning noise points (s),file\n"
printf "kNNG k,nodes,tasks/node,kNNG (s),MFC (s),AMST (s),CLAMS-HDBSCAN (s),Noise clustering (s),file\n"

for file in "$@"; do
awk -v fname="$file" '
Expand Down
Loading