gustafson_kessel
Using the Gustafson-Kessel algorithm, calculate and return the soft partition of a set of unlabeled data points.
Also, if display_intermediate_results is true, display intermediate results after each iteration. Note that because the initial cluster prototypes are randomly selected locations in the ranges determined by the input data, the results of this function are nondeterministic.
The required arguments to gustafson_kessel are:
The third (optional) argument to gustafson_kessel is a vector of cluster volumes. If omitted, a vector of 1’s will be used as the default.
The fourth (optional) argument to gustafson_kessel is a vector consisting of:
The default values are used if any of the four elements of the vector are missing or evaluate to NaN.
The return values are:
Three important matrices used in the calculation are X (the input points to be clustered), V (the cluster centers), and Mu (the membership of each data point in each cluster). Each row of X and V denotes a single point, and Mu(i, j) denotes the membership degree of input point X(j, :) in the cluster having center V(i, :).
X is identical to the required argument input_data; V is identical to the output cluster_centers; and Mu is identical to the output soft_partition.
If n denotes the number of input points and k denotes the number of clusters to be formed, then X, V, and Mu have the dimensions:
1 2 ... #features 1 [[ ] X = input_data = 2 [ ] ... [ ] n [ ]] 1 2 ... #features 1 [[ ] V = cluster_centers = 2 [ ] ... [ ] k [ ]] 1 2 ... n 1 [[ ] Mu = soft_partition = 2 [ ] ... [ ] k [ ]]
See also: fcm, partition_coeff, partition_entropy, xie_beni_index
## This demo: ## - classifies a small set of unlabeled data points using ## the Gustafson-Kessel algorithm into two fuzzy clusters ## - plots the input points together with the cluster centers ## - evaluates the quality of the resulting clusters using ## three validity measures: the partition coefficient, the ## partition entropy, and the Xie-Beni validity index ## ## Note: The input_data is taken from Chapter 13, Example 17 in ## Fuzzy Logic: Intelligence, Control and Information, by ## J. Yen and R. Langari, Prentice Hall, 1999, page 381 ## (International Edition). ## Use gustafson_kessel to classify the input_data. input_data = [2 12; 4 9; 7 13; 11 5; 12 7; 14 4]; number_of_clusters = 2; [cluster_centers, soft_partition, obj_fcn_history] = ... gustafson_kessel (input_data, number_of_clusters) ## Plot the data points as small blue x's. figure ('NumberTitle', 'off', 'Name', 'Gustafson-Kessel Demo 1'); for i = 1 : rows (input_data) plot (input_data(i, 1), input_data(i, 2), 'LineWidth', 2, ... 'marker', 'x', 'color', 'b'); hold on; endfor ## Plot the cluster centers as larger red *'s. for i = 1 : number_of_clusters plot (cluster_centers(i, 1), cluster_centers(i, 2), ... 'LineWidth', 4, 'marker', '*', 'color', 'r'); hold on; endfor ## Make the figure look a little better: ## - scale and label the axes ## - show gridlines xlim ([0 15]); ylim ([0 15]); xlabel ('Feature 1'); ylabel ('Feature 2'); grid hold ## Calculate and print the three validity measures. printf ("Partition Coefficient: %f\n", ... partition_coeff (soft_partition)); printf ("Partition Entropy (with a = 2): %f\n", ... partition_entropy (soft_partition, 2)); printf ("Xie-Beni Index: %f\n\n", ... xie_beni_index (input_data, cluster_centers, ... soft_partition)); Iteration count = 1, Objective fcn = 32.036570 Iteration count = 2, Objective fcn = 26.486425 Iteration count = 3, Objective fcn = 26.199786 Iteration count = 4, Objective fcn = 25.994545 Iteration count = 5, Objective fcn = 25.831740 Iteration count = 6, Objective fcn = 25.730027 Iteration count = 7, Objective fcn = 25.679108 Iteration count = 8, Objective fcn = 25.657508 Iteration count = 9, Objective fcn = 25.649243 Iteration count = 10, Objective fcn = 25.646251 Iteration count = 11, Objective fcn = 25.645199 Iteration count = 12, Objective fcn = 25.644835 Iteration count = 13, Objective fcn = 25.644709 Iteration count = 14, Objective fcn = 25.644666 Iteration count = 15, Objective fcn = 25.644652 Iteration count = 16, Objective fcn = 25.644647 Iteration count = 17, Objective fcn = 25.644645 Iteration count = 18, Objective fcn = 25.644644 Iteration count = 19, Objective fcn = 25.644644 Iteration count = 20, Objective fcn = 25.644644 Iteration count = 21, Objective fcn = 25.644644 Iteration count = 22, Objective fcn = 25.644644 Iteration count = 23, Objective fcn = 25.644644 Iteration count = 24, Objective fcn = 25.644644 Iteration count = 25, Objective fcn = 25.644644 cluster_centers = 4.2228 11.3276 12.2661 5.3877 soft_partition = 0.934026 0.890527 0.870501 0.023530 0.028088 0.012592 0.065974 0.109473 0.129499 0.976470 0.971912 0.987408 obj_fcn_history = Columns 1 through 10: 32.037 26.486 26.200 25.995 25.832 25.730 25.679 25.658 25.649 25.646 Columns 11 through 20: 25.645 25.645 25.645 25.645 25.645 25.645 25.645 25.645 25.645 25.645 Columns 21 through 25: 25.645 25.645 25.645 25.645 25.645 hold is now off for current axes Partition Coefficient: 0.888484 Partition Entropy (with a = 2): 0.308027 Xie-Beni Index: 0.107028 |
## This demo: ## - classifies three-dimensional unlabeled data points using ## the Gustafson-Kessel algorithm into three fuzzy clusters ## - plots the input points together with the cluster centers ## - evaluates the quality of the resulting clusters using ## three validity measures: the partition coefficient, the ## partition entropy, and the Xie-Beni validity index ## ## Note: The input_data was selected to form three areas of ## different shapes. ## Use gustafson_kessel to classify the input_data. input_data = [1 11 5; 1 12 6; 1 13 5; 2 11 7; 2 12 6; 2 13 7; 3 11 6; 3 12 5; 3 13 7; 1 1 10; 1 3 9; 2 2 11; 3 1 9; 3 3 10; 3 5 11; 4 4 9; 4 6 8; 5 5 8; 5 7 9; 6 6 10; 9 10 12; 9 12 13; 9 13 14; 10 9 13; 10 13 12; 11 10 14; 11 12 13; 12 6 12; 12 7 15; 12 9 15; 14 6 14; 14 8 13]; number_of_clusters = 3; [cluster_centers, soft_partition, obj_fcn_history] = ... gustafson_kessel (input_data, number_of_clusters, [1 1 1], ... [NaN NaN NaN 0]) ## Plot the data points in two dimensions (using features 1 & 2) ## as small blue x's. figure ('NumberTitle', 'off', 'Name', 'Gustafson-Kessel Demo 2'); for i = 1 : rows (input_data) plot (input_data(i, 1), input_data(i, 2), 'LineWidth', 2, ... 'marker', 'x', 'color', 'b'); hold on; endfor ## Plot the cluster centers in two dimensions ## (using features 1 & 2) as larger red *'s. for i = 1 : number_of_clusters plot (cluster_centers(i, 1), cluster_centers(i, 2), ... 'LineWidth', 4, 'marker', '*', 'color', 'r'); hold on; endfor ## Make the figure look a little better: ## - scale and label the axes ## - show gridlines xlim ([0 15]); ylim ([0 15]); xlabel ('Feature 1'); ylabel ('Feature 2'); grid ## Plot the data points in two dimensions ## (using features 1 & 3) as small blue x's. figure ('NumberTitle', 'off', 'Name', 'Gustafson-Kessel Demo 2'); for i = 1 : rows (input_data) plot (input_data(i, 1), input_data(i, 3), 'LineWidth', 2, ... 'marker', 'x', 'color', 'b'); hold on; endfor ## Plot the cluster centers in two dimensions ## (using features 1 & 3) as larger red *'s. for i = 1 : number_of_clusters plot (cluster_centers(i, 1), cluster_centers(i, 3), ... 'LineWidth', 4, 'marker', '*', 'color', 'r'); hold on; endfor ## Make the figure look a little better: ## - scale and label the axes ## - show gridlines xlim ([0 15]); ylim ([0 15]); xlabel ('Feature 1'); ylabel ('Feature 3'); grid hold ## Calculate and print the three validity measures. printf ("Partition Coefficient: %f\n", ... partition_coeff (soft_partition)); printf ("Partition Entropy (with a = 2): %f\n", ... partition_entropy (soft_partition, 2)); printf ("Xie-Beni Index: %f\n\n", ... xie_beni_index (input_data, cluster_centers, ... soft_partition)); cluster_centers = 11.1675 9.5123 13.4360 2.0744 11.9210 6.0810 3.2679 3.7416 9.5189 soft_partition = Columns 1 through 6: 1.1157e-02 7.1682e-03 9.2570e-03 1.3792e-02 6.1636e-05 1.8522e-02 9.6971e-01 9.8313e-01 9.8010e-01 9.6123e-01 9.9985e-01 9.6174e-01 1.9130e-02 9.7022e-03 1.0643e-02 2.4973e-02 8.9272e-05 1.9737e-02 Columns 7 through 12: 1.0694e-02 2.5264e-02 2.0999e-02 9.2634e-03 1.8979e-02 1.3117e-02 9.6753e-01 9.3340e-01 9.5532e-01 2.2956e-02 6.1145e-02 2.9746e-02 2.1778e-02 4.1336e-02 2.3681e-02 9.6778e-01 9.1988e-01 9.5714e-01 Columns 13 through 18: 2.2734e-02 2.4881e-03 3.1043e-02 4.4868e-03 2.9448e-02 2.6948e-02 5.6777e-02 6.5225e-03 7.9769e-02 1.3945e-02 1.4999e-01 9.6884e-02 9.2049e-01 9.9099e-01 8.8919e-01 9.8157e-01 8.2056e-01 8.7617e-01 Columns 19 through 24: 3.3446e-02 5.4461e-02 7.2961e-01 9.0208e-01 8.6338e-01 9.0000e-01 1.4314e-01 1.2767e-01 1.3230e-01 5.3105e-02 7.6953e-02 5.2614e-02 8.2342e-01 8.1786e-01 1.3809e-01 4.4813e-02 5.9663e-02 4.7385e-02 Columns 25 through 30: 7.8178e-01 9.8041e-01 8.8736e-01 8.1782e-01 8.9517e-01 9.2117e-01 1.0864e-01 1.0972e-02 5.8405e-02 1.0065e-01 6.3515e-02 4.6914e-02 1.0958e-01 8.6145e-03 5.4237e-02 8.1536e-02 4.1313e-02 3.1917e-02 Columns 31 and 32: 9.3144e-01 8.7447e-01 4.2581e-02 7.2530e-02 2.5982e-02 5.3000e-02 obj_fcn_history = Columns 1 through 10: 231.36 183.01 167.78 158.16 149.79 141.02 133.08 127.09 123.40 121.53 Columns 11 through 20: 120.64 120.26 120.11 120.06 120.04 120.04 120.03 120.03 120.03 120.03 Columns 21 through 30: 120.03 120.03 120.03 120.03 120.03 120.03 120.03 120.03 120.03 120.03 hold is now off for current axes Partition Coefficient: 0.841843 Partition Entropy (with a = 2): 0.472418 Xie-Beni Index: 0.192630 |