Hello people,

I was debugging the latest changes and noticed a possible problem.

When I load a parser model (eg public model en-parser-chunking.bin -
v1.5.0) the sub-models are loaded as 1.6.1-SNAPSHOT version, including
different properties from the original sub-models.

This is intentional?

Here's a simple test:

         InputStream is = new FileInputStream("en-parser-chunking.bin");
         ParserModel model = new ParserModel(is);

         ChunkerModel chunker = model.getParserChunkerModel();
         POSModel posmodel = model.getParserTaggerModel();

         Version v1 = model.getVersion(); /* returns: 1.5 */
         Version v2 = chunker.getVersion(); /* returns: 1.6.1-SNAPSHOT */
         Version v3 = posmodel.getVersion(); /* returns: 1.6.1-SNAPSHOT */

Thanks.
Gustavo K.

Reply via email to