use of edu.ucsf.rbvi.clusterMaker2.internal.api.Matrix in project clusterMaker2 by RBVI.
the class RunHopachPAM method kcluster.
@Override
public int kcluster(int nClusters, int nIterations, CyMatrix matrix, DistanceMetric metric, int[] clusterId) {
monitor.setProgress(0);
Summarizer summarizer;
PrimitiveSummarizer psummarizer;
switch(summaryMethod) {
case MEDIAN:
summarizer = new MedianSummarizer();
psummarizer = new PrimitiveMedianSummarizer();
break;
case MEAN:
default:
summarizer = new MeanSummarizer();
psummarizer = new PrimitiveMeanSummarizer();
break;
}
HopachablePAM partitioner = new HopachablePAM(network, matrix, metric);
partitioner.setParameters(K, L, splitCost, summarizer);
HopachPAM hopachPam = new HopachPAM(partitioner);
hopachPam.setParameters(maxLevel, minCostReduction, forceInitSplit, psummarizer);
Clusters c = hopachPam.run();
// copy results into clusterId
for (int i = 0; i < c.size(); ++i) {
clusterId[i] = c.getClusterIndex(i);
}
return c.getNumberOfClusters();
}
use of edu.ucsf.rbvi.clusterMaker2.internal.api.Matrix in project clusterMaker2 by RBVI.
the class Hopach method nextLevel.
/**
* Attempt to split the next level.
* @param level next level to split
* @return convergence
*/
boolean nextLevel(int level) {
// nextLevel can only be invoked for level >= 1
if (level < 1) {
throw new IllegalArgumentException("nextlevel can only be invoked for level >= 1");
}
// clusters in parent level
Clusters prevSplit = splits.get(level - 1);
int[][] partitions = prevSplit.getPartitions();
int nClusters = prevSplit.getNumberOfClusters();
double[][] segregations = partitioner.segregations(prevSplit);
// flattened array of all cluster index for each partition
int[] clusterIndex = new int[partitioner.size()];
// j indexes the first element of each cluster (global index)
int j = 0;
// running total number of partitions
int k = 0;
// cost of each subsplit
double[] costs = new double[nClusters];
// Attempt to split each partition
for (int i = 0; i < nClusters; ++i) {
// neighbour is on the right unless current partition is the last partition
boolean rightNeighbour = j < nClusters - 1;
int[] partition = partitions[i];
if (partition.length == 0) {
// partition is empty (partitioner returned fewer partitions than requested)
continue;
}
int neighbourIndex = rightNeighbour ? i + 1 : i - 1;
// split partition
// TODO cache sub-partitioner here and in MSS calculator
// or, cache partition and split results
Hopachable sub = partitioner.subset(partition);
Clusters subsplit = sub.split(false);
int subk = subsplit.getNumberOfClusters();
if (subk > 1 && neighbourIndex >= 0) {
int[][] subpartitions = subsplit.getPartitions();
// create separation matrix for distance from each sub-cluster to neighbouring cluster
// NB Pollard used medoid-separations for ordering initial level, but average-separations for subsequent levels (implemented here)
// TODO Allow partitioner to handle different options of summarizing distance from new subclusters to neighbouring cluster?
// e.g. Calculate distances between medoids instead of average distances
// Consider: HopachablePAM will only only one type of separations (medoid-separations).
double[] separations = new double[subpartitions.length];
for (int c = 0; c < subpartitions.length; ++c) {
// average distance across elements of sub-cluster
double d = 0.0;
for (int jj = 0; jj < subpartitions[c].length; ++jj) {
d += segregations[subpartitions[c][jj] + j][neighbourIndex];
}
separations[c] = d / subpartitions[c].length;
}
// order sub-clusters
sortSplit(subsplit, separations, rightNeighbour);
// NB ordered labels now stores the index of the medoids based on local index
}
costs[i] = subsplit.getCost();
// copy over new cluster index
for (int jj = 0; jj < sub.size(); ++jj) {
clusterIndex[partition[jj]] = subsplit.getClusterIndex(jj) + k;
}
j += sub.size();
k += subk;
}
// store results for new level
Clusters newSplit = new Clusters(clusterIndex, k, psummarizer.summarize(costs));
// NB now the orderedLabels store trivial labels...
this.split = newSplit;
this.splits.set(level, newSplit);
// splitting has converged if k has not changed
if (k == nClusters) {
return true;
}
// splitting has converged if new split is final
return splitIsFinal(newSplit);
}
Aggregations