Package com.neuralnetwork.shared.neurons

Examples of com.neuralnetwork.shared.neurons.SOMNeuron.distanceTo()


                }
       
        for (int x = xstart; x < xend; x++) {
          for (int y = ystart; y < yend; y++) {
            temp = lattice.getNeuron(x, y);
              dist = bmu.distanceTo(temp);
              if (dist <= (nbhRadius * nbhRadius)) {
                dFalloff = getDistanceFalloff(dist, nbhRadius);
                temp.updateWeights(curInput,
                                   learningRate, dFalloff);
              }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.