Examples of SRN


Examples of ch.idsia.ai.SRN

    public double evaluateLargeSRN (double[][] inputs, double[][] recurrent, double[][] output, int level, int seed) {
        // System.out.println(inputs.length+" "+inputs[0].length);
        // System.out.println(recurrent.length+" "+recurrent[0].length);
        // System.out.println(output.length+" "+output[0].length);
        SRN srn = new SRN (inputs, recurrent, output, recurrent.length, output[0].length);
        Agent agent = new LargeSRNAgent(srn);
        EvaluationOptions options = new CmdLineOptions(new String[0]);
        final int startingSeed = 0;
        options.setLevelRandSeed(seed);
        options.setMaxAttempts(1);
View Full Code Here

Examples of ch.idsia.ai.SRN

    public void evaluateLargeSRN (double[][] inputs, double[][] recurrent, double[][] output, int level) {
        // 98 * 6
        // 6*6
        // 6*6
        SRN srn = new SRN (inputs, recurrent, output, recurrent.length, output[0].length);
        Agent agent = new LargeSRNAgent(srn);
        Stats.doStats(agent, 0);
    }
View Full Code Here

Examples of ch.idsia.ai.SRN

    public double evaluateLargeSRN (double[][] inputs, double[][] recurrent, double[][] output, int level,int seed) {
        // System.out.println(inputs.length+" "+inputs[0].length);
        // System.out.println(recurrent.length+" "+recurrent[0].length);
        // System.out.println(output.length+" "+output[0].length);
        SRN srn = new SRN (inputs, recurrent, output, recurrent.length, output[0].length);
        Agent agent = new LargeSRNAgent(srn);
        EvaluationOptions options = new CmdLineOptions(new String[0]);
        options.setLevelRandSeed(seed);
        options.setMaxAttempts(1);
        options.setVisualization(true);
View Full Code Here

Examples of ch.idsia.ai.SRN

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

    public SmallSRNAgent() {
        super (name);
        srn = new SRN (numberOfInputs, 10, numberOfOutputs);
    }
View Full Code Here

Examples of ch.idsia.ai.SRN

    private String name;
    final int numberOfOutputs = 6;
    final int numberOfInputs = 21;

    public SRNAgent () {
        srn = new SRN (numberOfInputs, 10, numberOfOutputs);
    }
View Full Code Here

Examples of ch.idsia.ai.SRN

    final int numberOfInputs = 53;
    static private final String name = "MediumSRNAgent";

    public MediumSRNAgent() {
        super (name);
        srn = new SRN (numberOfInputs, 10, numberOfOutputs);
    }
View Full Code Here

Examples of ch.idsia.ai.SRN

    final int numberOfInputs = 101;
    static private final String name = "LargeSRNAgent";

    public LargeSRNAgent() {
        super (name);
        srn = new SRN (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.