Scenario |
Type |
Detail |
Clustering |
Basic Path |
First is generating array of KNeuron, that need clustering algorithms. After that are retrieved settings for clustering from SOMForm.clusterSettings class.
For hierarchical clustering is used: DataClustering.HierarchicalClustering(IClusterable[] data, int endClusters, int distance) function For K-Mean clustering is used: DataClustering.KMeanClustering(IClusterable[] data, int endClusters) function
After clustering, every neuron in network has clusterID ( KNeuron.getClusterID() ), that derermine to which cluster neuron belongs to. |
|