Examples of modifyWeights()


Examples of ca.nengo.model.PlasticNodeTermination.modifyWeights()

     */
    public void modifyTransform(float[][] change, boolean save, int start, int end) {
        Termination[] terms = this.getNodeTerminations();
        for(int postIx = start; postIx < end; postIx++) {
            PlasticNodeTermination pnt = (PlasticNodeTermination) terms[postIx];
            pnt.modifyWeights(change[postIx-start], save);
        }
    }

    /**
     * Saves the weights in the PlasticNodeTerminations within.
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.