Package eas.users.lukas.neuroCEGPM.simpleNeural.activationFunction

Examples of eas.users.lukas.neuroCEGPM.simpleNeural.activationFunction.ActivationFunctionPOW2


    private long randomSeedForFixedRandom;
   
    public NeuroTranslator(ParCollection params, long seedForFixedRandom, int maxNumOfNeuronsTrans, int maxNumOfNeuronsCont) {
        super(params, 1);
        this.randomSeedForFixedRandom = seedForFixedRandom;
        this.setStandardActFct(new ActivationFunctionPOW2()); // TODO
        this.addLinkOrSetWeight(OUTPUT_NEURON_ID, OUTPUT_NEURON_ID, BigDecimal.ONE, null);
        this.translatedTranslatorSequence = new LinkedList<>();
        this.translatedTranslatorSequence.add(new BigDecimal("1"));
        this.translatedTranslatorSequence.add(new BigDecimal("0"));
        this.translatedTranslatorSequence.add(new BigDecimal("0"));
View Full Code Here

TOP

Related Classes of eas.users.lukas.neuroCEGPM.simpleNeural.activationFunction.ActivationFunctionPOW2

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.