Examples of NeuroTranslator


Examples of eas.users.lukas.neuroCEGPM.simpleNeural.NeuroTranslator

    public Thread setController(List<BigDecimal> genome, List<BigDecimal> genomeTrans, Random rand, boolean parallel) {
        Runnable target = () -> {
            this.genome = genome;       
            mut.mutate(this.genome);
            this.genomeTrans = genomeTrans;
            this.translator = new NeuroTranslator(rand.nextLong(), 10, 15);
           
            if (this.genomeTrans != null) {
                mutTrans.mutate(this.genomeTrans);
                this.translator = this.translator.translateGenomeToTranslator(this.genomeTrans, false);
                this.genomeTrans = this.translator.translateReverseTranslatorToGenome(); // Selbstreflexive Sequenz erstellen.
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.