Package cz.zcu.fav.liks.ml.featuresel.filtering

Examples of cz.zcu.fav.liks.ml.featuresel.filtering.BasicFilterTrainer


    // test na zbytku dat
    extractor = new FeatureExtractor<Review>(set);
    TrainingFeatureVectorList tfvl = extractor.extractTrainingFeatures(instances);

    if (filter != null) {
      FilterTrainer filterTrainer = new BasicFilterTrainer();
      filterTrainer.train(tfvl);
      tfvlReduction += filter.filter(tfvl, minWeight, filterTrainer);
    }

    classifier = trainer.train(tfvl);
View Full Code Here

TOP

Related Classes of cz.zcu.fav.liks.ml.featuresel.filtering.BasicFilterTrainer

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.