Package eas.simulation.brain.neural.functions

Examples of eas.simulation.brain.neural.functions.ActivationFunctionStep


   
    public HopfieldNetwork(ParCollection params, double threashold) {
        super(params);
        this.initializationPhase = true;
        this.threashold = threashold;
        this.setStandardActFct(new ActivationFunctionStep(this.threashold, -1, 1));
        this.setStandardTrnFct(new TransitionFunctionWeightedSum());
        this.setAllowLinksFromOutputs(true);
        this.setAllowLinksToInputs(true);
        this.setAllowRecurrentLinks(true);
        this.initializationPhase = false;
View Full Code Here


    public void setAllowLinksFromOutputs(boolean allowLinksFromOutputs) {
        super.setAllowLinksFromOutputs(allowLinksFromOutputs);
    }
   
    public void setThreadsholdForNeuron(int neuronID, double threashold) {
        this.getNeuron(neuronID).setActivationFunctionPhi(new ActivationFunctionStep(threashold, -1, 1));
    }
View Full Code Here

TOP

Related Classes of eas.simulation.brain.neural.functions.ActivationFunctionStep

Copyright © 2018 www.massapicom. 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.