Visualizing self-organizing maps in python

is there any python package that deals with visualizing and animating unsupervised-learning networks, i.e. like self-organizing maps (SOM)? hoping if matplotlib have code for it.

Upvotes: 3

Views: 3252

Answers (1)

Mathias Loesch
Mathias Loesch

Reputation: 383

If you want to use matplotlib, have a look at how to plot a confusion matrix:

How to plot confusion matrix with string axis rather than integer in python

Plotting a 2D SOM should be a similar task.

Upvotes: 1

Related Questions