AI::NeuralNet::Kohonen 0.142 review

Download
by rbytes.net on

AI::NeuralNet::Kohonen is a Perl module with Kohonen's Self-organising Maps. SYNOPSIS $_ = AI::NeuralNet::Kohonen-

License: Perl Artistic License
File size: 11K
Developer: Lee Goddard
0 stars award from rbytes.net

AI::NeuralNet::Kohonen is a Perl module with Kohonen's Self-organising Maps.

SYNOPSIS

$_ = AI::NeuralNet::Kohonen->new(
map_dim_x => 39,
map_dim_y => 19,
epochs => 100,
table =>
"3
1 0 0 red
0 1 0 yellow
0 0 1 blue
0 1 1 cyan
1 1 0 yellow
1 .5 0 orange
1 .5 1 pink"
);

$_->train;
$_->save_file('mydata.txt');
exit;

An illustrative implimentation of Kohonen's Self-organising Feature Maps (SOMs) in Perl. It's not fast - it's illustrative. In fact, it's slow: but it is illustrative....

Requirements:
AI::NeuralNet::Kohonen::Node
AI::NeuralNet::Kohonen::Input
Perl

AI::NeuralNet::Kohonen 0.142 search tags