A list containing the contents of the cluster template.
- cluster
A vector of cluster assignments
for each graph used to create the cluster template. The clusters are numbered sequentially 1, 2,...,K.
- centers
The final cluster centers produced by the K-Means algorithm.
- K
The number of clusters in the template.
- n
The number of training graphs to used to create the template.
- iters
The maximum number of iterations for the K-means
algorithm.
- WithinClustDists
The within cluster
distances on the final iteration of the K-means algorithm. More specifically,
the distance between each graph and the center of the cluster to which it
was assigned on each iteration. The output of make_clustering_template
stores
the within cluster distances on each iteration, but the previous iterations were removed here to reduce the file size.