122123124125126127128129130131132
{ reader.open(UTInput.createBufferedFileReader(trainFile)); while ((tree = reader.next()) != null) { component.collect(tree); if (++total%5000 == 0) LOG.info("."); } reader.close(); } LOG.info("\n");