}
private static void eval(POSTrain pos)
throws UnsupportedEncodingException, FileNotFoundException,
Exception, IOException {
SeqEval ne;
File modelF = new File(model);
bw.println("模型大小:"+modelF.length()/1000000.0);
pos.testfile = testfile ;
pos.output = output;
pos.hasLabel = true;
pos.cl = null;
pos.test();
ne = new SeqEval();
ne.NoSegLabel = true;
ne.readOOV(dicfile);
ne.read(output);
String res = ne.calcByType2();
bw.println(res);
}