Skip to content

Commit

Permalink
Initial checkin on github.
Browse files Browse the repository at this point in the history
  • Loading branch information
Leif Johnson committed Jun 7, 2011
0 parents commit 0e77614
Show file tree
Hide file tree
Showing 5 changed files with 1,212 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
@@ -0,0 +1,7 @@
*~
#*#
*.so
*.py[oc]
*.egg-info
dist
build
16 changes: 16 additions & 0 deletions README
@@ -0,0 +1,16 @@
This module contains some basic implementations of Kohonen-style vector
quantizers: Self-Organizing Map (SOM), Neural Gas, and Growing Neural Gas.
Kohonen-style vector quantizers use some sort of explicitly specified topology
to encourage good separation among prototype "neurons".

Vector quantizers are useful for learning discrete representations of a
distribution over continuous space, based solely on samples drawn from the
distribution. This process is also generally known as density estimation.

The source distribution includes an interactive test module that uses PyGTK and
Cairo to render a set of quantizers that move around in real time as samples are
drawn from a known distribution and fed to the quantizers. Run this test with :

python kohonen_test.py

Have fun !

0 comments on commit 0e77614

Please sign in to comment.