How to use lemmatisation (LemmaGen) in C++
I'm using LemmaGen ( http://lemmatise.ijs.si ) for text lemmatisation. I've successfully used it by running the following statement in the command line. $lemmatize -l $./data/lemmatizer/lem-m-en.bin input.txt output.txt However, I actually want to use it as a library in my C++ project programatically. Any one knows how to use LemmaGen C++ API? Thanks! Or anyone can suggest other C++ lemmatisation library that can be used in C++ programmatically? Please correct me if I'm asking the question wrongly as I'm still quite new to C++. 来源: https://stackoverflow.com/questions/37151476/how-to-use