Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in AI and Deep Learning by (50.2k points)

I am looking for a hexagonal self-organizing map on Python.

hexagonal tiling

  1. ready module. If one exists.

  2. way to plot hexagonal cell

  3. algorithms to work with hexagonal cells as an array or smth else

About: A self-organizing map (SOM) or self-organizing feature map (SOFM) is a type of artificial neural network that is trained using unsupervised learning to produce a low-dimensional (typically two-dimensional)

1 Answer

0 votes
by (108k points)

What really happens in SOM?

Each data point in the data set recognizes themselves by competing for representation. The procedure of the SOM mapping starts from initializing the weight vectors. Then a sample vector is selected randomly from the previous step and the map of weight vectors is searched to find which weight best represents that sample. Each and every weight vector that is present there, has neighboring weights that are close to it. The chosen weight is then rewarded by being able to become more like that randomly selected sample vector. The neighbors of that particular weight are also rewarded by being able to become more like the chosen sample vector. This then allows the map to grow and form many different shapes.

For the full implementation of SOM in python, refer the following link:

https://visualstudiomagazine.com/articles/2019/01/01/self-organizing-maps-python.aspx

Browse Categories

...