Package weka.core.Debug

Examples of weka.core.Debug.Random


    NumericToNominal filter = new NumericToNominal();
    filter.setInputFormat(instances);
    instances = Filter.useFilter(instances, filter);
   
   
    Random ran = new Random(System.currentTimeMillis());
    instances.randomize(ran);
   
    int max = 20;
    double[] acc = new double[max];
    while(max > 0) {
View Full Code Here

TOP

Related Classes of weka.core.Debug.Random

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.