Package com.deafgoat.ml.prognosticator

Examples of com.deafgoat.ml.prognosticator.Experimenter


    /**
     * This builds the model and does prediction
     */
    public static void main(final String[] pArgs) throws Exception {
        // Create experimenter object using config file
        _experimenter = new Experimenter(_config);

        // Build the model.
        _experimenter.buildModel();

        // Run the prediction
View Full Code Here


        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.
        experimenter.buildModel();

        // Run the prediction
        experimenter.predict();

    }
View Full Code Here

TOP

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

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.