Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clustering using SOM in python [closed]

I am trying to perform test summarize using self organizing map (SOM) as the clustering model. Do we have any libraries for performing SOM in python.

like image 297
Koteswara Avatar asked Feb 22 '26 19:02

Koteswara


1 Answers

There is one here, but in general SOM implementations are not part of the main machine learning libraries. There are two reasons

  • SOM's, although nice to look at, don't really perform well in real problems.
  • It is too easy to construct one by yourself.

I would suggest to make it yourself. It is very easy and a great way to introduce yourself to python. The main code of the SOM itself is about 3 lines (a loop and one update). The remaing of the code would be for loading the data and plotting them, but you won't avoid that part of the code by using an external library

like image 107
blue_note Avatar answered Feb 25 '26 08:02

blue_note



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!