Package org.encog.neural.neat.training.opp.links

Examples of org.encog.neural.neat.training.opp.links.SelectProportion


        0.1125,
        new NEATMutateWeights(new SelectFixed(3),
            new MutatePerturbLinkWeight(0.02)));
    weightMutation.getComponents().add(
        0.1125,
        new NEATMutateWeights(new SelectProportion(0.02),
            new MutatePerturbLinkWeight(0.02)));
    weightMutation.getComponents().add(
        0.1125,
        new NEATMutateWeights(new SelectFixed(1),
            new MutatePerturbLinkWeight(1)));
    weightMutation.getComponents().add(
        0.1125,
        new NEATMutateWeights(new SelectFixed(2),
            new MutatePerturbLinkWeight(1)));
    weightMutation.getComponents().add(
        0.1125,
        new NEATMutateWeights(new SelectFixed(3),
            new MutatePerturbLinkWeight(1)));
    weightMutation.getComponents().add(
        0.1125,
        new NEATMutateWeights(new SelectProportion(0.02),
            new MutatePerturbLinkWeight(1)));
    weightMutation.getComponents().add(
        0.03,
        new NEATMutateWeights(new SelectFixed(1),
            new MutateResetLinkWeight()));
    weightMutation.getComponents().add(
        0.03,
        new NEATMutateWeights(new SelectFixed(2),
            new MutateResetLinkWeight()));
    weightMutation.getComponents().add(
        0.03,
        new NEATMutateWeights(new SelectFixed(3),
            new MutateResetLinkWeight()));
    weightMutation.getComponents().add(
        0.01,
        new NEATMutateWeights(new SelectProportion(0.02),
            new MutateResetLinkWeight()));
    weightMutation.getComponents().finalizeStructure();

    result.setChampMutation(weightMutation);
    result.addOperation(0.5, new NEATCrossover());
View Full Code Here

TOP

Related Classes of org.encog.neural.neat.training.opp.links.SelectProportion

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.