Package cz.zcu.fav.liks.ml.lists

Examples of cz.zcu.fav.liks.ml.lists.FeatureVectorList


    classifier = trainer.train(tfvl);

    BasicInstanceList<Review> ins = new BasicInstanceList<Review>(testSet.toArray(new Review[testSet.size()]), null);

    // klasifikace
    FeatureVectorList fvl = extractor.extractFeatures(ins);
    Iterator<Result> results = classifier.classify(fvl).getLabels(0);

    int i = 0;
    ConfusionMatrix confusionMatrix = new ConfusionMatrix();
    // zaps�n� v�sledk�
View Full Code Here

TOP

Related Classes of cz.zcu.fav.liks.ml.lists.FeatureVectorList

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.