Package org.joone.engine

Examples of org.joone.engine.Monitor


    // Configure the neural net for prediction
    neuralNet.getInputLayer().addInputSynapse(inputSynapse);
    neuralNet.getOutputLayer().addOutputSynapse(outputSynapse);
    inputSynapse.setAdvancedColumnSelector("1-" + attributes.length);

    Monitor monitor = neuralNet.getMonitor();
    monitor.setTrainingPatterns(1);
    monitor.setTotCicles(1);
    monitor.setLearning(false);
  }
View Full Code Here

TOP

Related Classes of org.joone.engine.Monitor

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.