1 / 30

OPTIMIZING THE SELF-ORGANIZING MAP FOR PATTERN AND IMAGE CLASSIFICATION

OPTIMIZING THE SELF-ORGANIZING MAP FOR PATTERN AND IMAGE CLASSIFICATION. C. C. Hung, H. Ijaz, E. Jung, and B.-C. Kuo #. School of Computing and Software Engineering Southern Polytechnic State University, Marietta, Georgia USA

eldora
Download Presentation

OPTIMIZING THE SELF-ORGANIZING MAP FOR PATTERN AND IMAGE CLASSIFICATION

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. OPTIMIZING THE SELF-ORGANIZING MAP FOR PATTERN AND IMAGE CLASSIFICATION C. C. Hung, H. Ijaz, E. Jung, and B.-C. Kuo# School of Computing and Software Engineering Southern Polytechnic State University, Marietta, Georgia USA #Graduate Institute of Educational Measurement and Statistics, National Taichung University of Education, Taichung, Taiwan, R. O. C.

  2. Contents • Introduction • Self-Organizing Maps (SOM) • Artificial Bee Colony (ABC) Algorithm • Combining SOM and ABC • Experimental Results • Conclusions & Future Work

  3. Introduction • Self-Organizing Map (SOM) has been used for image classification. • Similar to K-means algorithm, the local minimum problem is inevitable in a complex problem domain. • Several solutions have been proposed for optimizing the SOM in remote sensing applications. Example: Simulated annealing.

  4. Introduction • Can we use Bee algorithms (BA) to accomplish the more robust classification? • Many bee algorithms have been developed. • The artificial bee colony (ABC) was used with SOM for this study.

  5. Self-Organizing Map (SOM) • The self-organizing map (SOM) is a method for unsupervised learning, based on a grid of artificial neurons whose weights are adapted to match input vectors in a training set. • It was first described by the Finnish professor Teuvo Kohonen and is thus sometimes referred to as a Kohonen map. • SOM is one of the popular neural computation methods in use, and several thousand scientific articles have been written about it. SOM is especially good at producing visualizations of high-dimensional data.

  6. Self-Organizing Map (SOM) Figure 1: Each Xi represents one component of the pixel vector for multispectral bands. L denotes the number of bands used. Each neuron in the output layer corresponds to one spectral class where its spectral means are stored in the connection between the inputs and the output neurons.

  7. Self-Organizing Map (SOM) Figure 2:SOM Neural Network

  8. Self-Organizing Map (SOM) • Each SOM neuron can be seen asrepresenting a clustercontaining all the input examples which are mapped to that neuron. • For a given input, the output of SOM is the neuron with weight vector most similar (with respect to Euclidean distance) to that input. • The “trained” classes are represented by the output nodes and the center of each class is stored in the connection weights between input and output nodes.

  9. Self-Organizing Map (SOM) Step 4: Update weights of the winning node j* using Δ(t) is a monotonically slowly decreasing function of t (i.e. learning rate) and its value is between 0 and 1

  10. Self-Organizing Maps (SOM) The basic process can be summarized by the following steps: Step 1: Initialize all nodes to small random values. Step 2: Choose a random data point. Step 3: Calculate the winning node. Step 4: Update the winning node and neighbors. Step 5: Repeat steps 2 to 4 for given number of iterations.

  11. Bees Algorithm • The Bees Algorithm is a population-based search algorithm inspired by the natural foraging behaviour of honey bees to find the optimal solution. • The algorithm performs a kind of neighbourhood search combined with random search.

  12. Artificial Bee Colony(ABC) Algorithm • Scout bees search randomly from one patch to another

  13. Artificial Bee Colony (ABC) Algorithm • They deposit their nectar or pollen go to the “dance floor” to perform a “waggle dance” Credit: Masaryk University, Brno, Czech Republic, Wed 08 Apr 2009

  14. Artificial Bee Colony (ABC) Algorithm • Bees communicate through the waggle dance which contains the following information: • The direction of flower patches (angle between the sun and the patch) • The distance from the hive (duration of the dance) • The quality rating (fitness) (frequency of the dance) Credit: Masaryk University, Brno, Czech Republic, Wed 08 Apr 2009

  15. Artificial Bee Colony (ABC) Algorithm Three type of Bees in ABC: 1) Employed bees 2) Onlooker bees, and 3) Scouts. Employed and onlooker bees perform the exploitation search. Scouts carry out the exploration search.

  16. Artificial Bee Colony (ABC) Algorithm ABC employs four different selection processes: 1) a global selection process used by onlookers, 2) a local selection process carried out in a region by employed and onlooker bees, 3) a greedy selection process used by all bees, and 4) a random selection process used by scouts.

  17. Artificial Bee Colony (ABC) Algorithm The ABC algorithm consists of the following steps: Step 1: Initialize by picking k random Employed bees from data. Step 2: Send Scout bees and test against Employed bees (replace if better than Employed is found).

  18. Artificial Bee Colony (ABC) Algorithm Step 3: Send Onlooker bees to Employed. Step 4: Test Onlooker bees against Employed (replace if better than Employed is found). Step 5: Reduce the radius of Onlooker bees. Step 6: Repeat steps 2 to 5 for a given number of iterations.

  19. Artificial Bee Colony (ABC) Algorithm • The algorithm requires these parameters to be set: • Number of clusters (k), • Number of bees including Employed, Onlookers, and Scouts (B), • Number of iteration (iter), and • Initial radius of Onlookers (ir).

  20. Combining ABC and SOM The proposed algorithm selects some neighboring nodes in SOM for weights update by using the ABC.

  21. Combining ABC and SOM • The basic process can be summarized by the following steps: Step 1: Initialize all weights to small random values. Step 2: Choose a random data point. Step 3: Calculate the winning node. Step 4: Use ABC to select neighboring nodes. Step 5: Update the winning node and selected neighboring nodes. Step 6: Repeat steps 2 to 5 for a given number of iterations.

  22. Combining ABC and SOM • Illustration:

  23. Experimental Results • Some of results on Iris and Glass data sets are shown in Tables 1 and 2. Columns Max, Mean and Variance, give the maximum accuracy achieved, mean accuracy of 500 runs and the standard deviation respectively. The accuracy distribution is also given.

  24. Experimental Results • Table 1: Results and accuracy distribution of 100 runs on Iris data.

  25. Experimental Results • Table 2: Results and accuracy distribution of 500 random experiments on Iris data.

  26. Experimental Results • Table 3: Results and accuracy distribution of 500 random experiments on Glass data.

  27. Experimental Results (a) An original image (b) ABC (c) SOM (d) ABC + SOM Figure 2. (a) An original image, (b), (c) and (d)results of applying ABC, SOM, and the SOM+ABC algorithm, respectively.

  28. Experimental Results • From the results we can see that all three achieved the same maximum accuracy for Iris data but the proposed algorithm is more stable than either of the other two. Furthermore, the algorithm can be effective with almost any parameters if one lets it run long enough. • The proposed algorithm (i.e. ABC + SOM) is an improved time efficient algorithm as compared to ABC. The ratio of computation time for SOM, ABC + SOM, and ABC is about 1:3:20.

  29. Conclusions & Future Work • This is a very primitive experiment. Further study and comparison with other similar methods are still need be done. • The robustness of the algorithm can be improved by refining the bee model.

  30. Thanks

More Related