Package eas.simulation.brain.neural.functions

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


                    new ActivationFunctionIdentity());
        }
       
        this.setActivationFunction(
                neuronsCount + LEFT_WHEEL_NUM_COUNTED_FROM_END,
                new ActivationFunctionLug());
        this.setActivationFunction(
                neuronsCount + RIGHT_WHEEL_NUM_COUNTED_FROM_END,
                new ActivationFunctionLug());
    }
View Full Code Here


        this(GlobalVariables.getPrematureParameters());
    }
   
    public OldNeuroTranslator(ParCollection params) {
        super(params);
        this.setStandardActFct(new ActivationFunctionLug());
        super.addNeuron(BIAS_NEURON_ID, new ActivationFunctionConstant(1), new TransitionFunctionWeightedSum(), Neuron.HIDDEN_NEURON);
        super.addNeuron(INPUT_NEURON_ID, new ActivationFunctionIdentity(), new TransitionFunctionWeightedSum(), Neuron.INPUT_NEURON);
        super.addNeuron(OUTPUT_NEURON_ID, new ActivationFunctionIdentity(), new TransitionFunctionWeightedSum(), Neuron.OUTPUT_NEURON);
        this.setAllowLinksFromOutputs(true);
        this.setAllowLinksToInputs(false);
View Full Code Here

TOP

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

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.