MATLAB: Matlab code for Supervised SOM neural network

MATLABneural networksupervised som

Is there any way to train a self organizing map as supervised training. I want this because when I use unsupervised SOM, it does not classifies data correctly.

Best Answer

A net cannot be self-organizing if it is supervised. You should be looking for Learning Vector Quantization Nets
>> lookfor lvq
nnd14lv1 - NND4LV1 LVQ1 demonstration.
nnd14lv2 - NND4LV1 LVQ2 demonstration.
initlvq - LVQ weight initialization function.
learnlv1 - LVQ1 weight learning function.
learnlv2 - LVQ 2.1 weight learning function.
lvqnet - Learning vector quantization (LVQ) neural network.
lvqoutputs - Define settings for LVQ outputs, without changing values.
newlvq - Create a learning vector quantization network.
nnt2lvq - Update NNT 2.0 learning vector quantization network.
Thank you for formally accepting my answer
Greg