-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclustering.php
More file actions
59 lines (46 loc) · 1.06 KB
/
clustering.php
File metadata and controls
59 lines (46 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
require 'k_means.php';
//-------------Clustering----------------
function getClusters($doc_list)
{
$matrix = buildMatrix($doc_list, true);
//convert associative arrays
foreach($matrix as $key => $doc)
{
$matrix[$key] = array_values($doc);
}
//call kmeans function to determine clusters
$cluster_map = getClusterMap($matrix);
//array to hold final document clusters
$clusters = array();
foreach($cluster_map as $clusterID => $cluster)
{
foreach($cluster as $docID)
{
$clusters[$clusterID][] = $doc_list[$docID];
}
}
return $clusters = getLabels($clusters);
}
//get cluster labels
function getLabels($clusters)
{
foreach($clusters as $clusterID => $cluster)
{
$doc_frq = buildMatrix($cluster, false);
//take top term as label for cluster
arsort($doc_frq);
foreach($doc_frq as $term => $df)
{
$label = $term;
//exclude previous labels
if (!isset($clusters[$label]))
break;
}
//change keys to be labels
$clusters[$label] = $clusters[$clusterID];
unset($clusters[$clusterID]);
}
return $clusters;
}
?>