From 0d59de5f07abde759b86fd1f587dda0ddea0a029 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 18 Nov 2012 17:31:21 +0100 Subject: Test with tanimoto distance. --- source/testclusters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/testclusters.py') diff --git a/source/testclusters.py b/source/testclusters.py index ea6406b1..a16d3492 100644 --- a/source/testclusters.py +++ b/source/testclusters.py @@ -2,14 +2,14 @@ import clusters -K = 8 +K = 7 blognames,words,data = clusters.readfile("blogdata1.txt") coords = clusters.scaledown(data) print "Generating clusters..." -kclust = clusters.kcluster(data, k=K) +kclust = clusters.kcluster(data, k=K, distance=clusters.pearson) print print "Clusters:" for i in range(K): -- cgit