Package jnisvmlight

Examples of jnisvmlight.TrainingParameters


    }
    System.out.println(" DONE.");

    // Initialize a new TrainingParamteres object with the default SVM-light
    // values
    TrainingParameters tp = new TrainingParameters();

    // Switch on some debugging output
    tp.getLearningParameters().verbosity = 1;

    System.out.println("\nTRAINING SVM-light MODEL ..");
    SVMLightModel model = trainer.trainModel(traindata, tp);
    System.out.println(" DONE.");
View Full Code Here

TOP

Related Classes of jnisvmlight.TrainingParameters

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.