Next Previous Contents

11. MusicSOM

Now run SOMLib to get the SOM from the pieces of music.

#! /bin/bash
# makes a SOM
#

#global settings
XDIM=10
YDIM=10
ITERA=7000
LEARN=0.9
NEIGHB=5
SEED=17
TEMPLATE=none
LABELS=10
MINWGT=0.1
VERB=2

#initial Values
NAME=$1
INPUTVEC=./$NAME.map.vector

echo calling SOM with $INPUTVEC
/SOM/bin/somlib_som_script $NAME $INPUTVEC $XDIM $YDIM $ITERA $LEARN $NEIGHB $TEMPLATE $LABELS


Next Previous Contents