Definition
Combines both Hamming Network and MaxNet, in sequence, then brings the winner node closer to the input node. # Algorithm 1. Initialize random weights and learning rate η. 2. Find the winning cluster j (of m clusters) which is the cluster closest to the input vector x=[x1…xn] (minimize the squared distance of each cluster’s weight with respective element of vector) with each cluster’s associated weight wj,i j=1,..mminD(j)=j=1,..mmin{i=1∑n(xi−wj,i)2} 3. Update each wj,i for the chosen j like so: Δwj,i=η(t)(xi−wj,i), wj,i=wj,i−Δwj,ifor i∈{1,…,n} 4. Repeat until network converges.