Regarding the NLP tools intergrated into Stardog, do they support Italian language? Which other language is supported?
The BITES release is just made for English language as seen in the code: https://github.com/stardog-union/bites-corenlp/blob/master/build.gradle#L30-L31
It uses Stanford CoreNLP, so you can easily adapt to to other models. But, the latest releases do not provide a model for Italian: https://stanfordnlp.github.io/CoreNLP/download.html
Even not via 3rd party: https://stanfordnlp.github.io/CoreNLP/model-zoo.html
Also, switching to OpenNLP would not work as they also don't provide Italian models: http://opennlp.sourceforge.net/models-1.5/
For Italian language, I could find http://tint.fbk.eu/ - it's based on CoreNLP, btu I'm pretty sure you can't simply change the Gradle dependency, but have to adapt the whole BITES code.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.