Package com.deafgoat.ml.prognosticator

Examples of com.deafgoat.ml.prognosticator.ARFFWriter


     */
    public static void main(final String[] pArgs) throws Exception {

        final ConfigReader config = new ConfigReader(CONFIG_FILE);

        final ARFFWriter testArffWriter = new ARFFWriter(config, TEST_CSV, TEST_ARFF);
        testArffWriter.writeARFF();

        final ARFFWriter trainingArffWriter = new ARFFWriter(config, TRAINING_CSV, TRAINING_ARFF);
        trainingArffWriter.writeARFF();

        // Create experimenter object.
        final Experimenter experimenter = new Experimenter(CONFIG_FILE);

        // Build the model.
View Full Code Here

TOP

Related Classes of com.deafgoat.ml.prognosticator.ARFFWriter

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.