Examples of MLP


Examples of ch.idsia.ai.MLP

    private String name = "SimpleMLPAgent";
    final int numberOfOutputs = 6;
    final int numberOfInputs = 10;

    public SimpleMLPAgent () {
        mlp = new MLP (numberOfInputs, 10, numberOfOutputs);
    }
View Full Code Here

Examples of ch.idsia.ai.MLP

    final int numberOfOutputs = Environment.numberOfButtons;
    final int numberOfInputs = 53;

    public MediumMLPAgent() {
        super (name);
        mlp = new MLP (numberOfInputs, 10, numberOfOutputs);
    }
View Full Code Here

Examples of ch.idsia.ai.MLP

    final int numberOfInputs = 21;
    static private final String name = "SmallMLPAgent";

    public SmallMLPAgent() {
        super (name);
        mlp = new MLP (numberOfInputs, 10, numberOfOutputs);
    }
View Full Code Here

Examples of ch.idsia.ai.MLP

    final int numberOfOutputs = Environment.numberOfButtons;
    final int numberOfInputs = 101;

    public LargeMLPAgent() {
        super (name);
        mlp = new MLP (numberOfInputs, 10, numberOfOutputs);
    }
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.