101102103104105106107108109110111112
//从模型文件读入分类器 Linear cl =Linear.loadFrom(modelFile); //性能评测 Evaluation eval = new Evaluation(testset); eval.eval(cl,1); /** * 测试 */ System.out.println("类别 : 文本内容");
236237238239240241242243244245246247
//从模型文件读入分类器 Linear cl =Linear.loadFrom(linearModelFile); //性能评测 Evaluation eval = new Evaluation(testset); eval.eval(cl,1); /** * 测试 */ System.out.println("类别 : 文本内容"); System.out.println("===================");
979899100101102103104105106107
//从模型文件读入分类器 Linear cl =Linear.loadFrom(modelFile); //性能评测 Evaluation eval = new Evaluation(testset); eval.eval(cl,1); }