Hello, I'm trying to use TextRank[1] on Dutch text. The implementation of TextRank has LanguageEnglish and LanguageSpanish classes, and they import OpenNLP classes such as
import opennlp.tools.lang.english.ParserTagger; import opennlp.tools.lang.english.SentenceDetector; import opennlp.tools.lang.english.Tokenizer; and import opennlp.tools.lang.spanish.PosTagger; import opennlp.tools.lang.spanish.SentenceDetector; import opennlp.tools.lang.spanish.Tokenizer; I want to extend TextRank for Dutch, and for this I've created a new LanguageDutch class but I couldn't find the corresponding OpenNLP classes to import, such as opennlp.tools.lang.dutch.PosTagger; opennlp.tools.lang.dutch.SentenceDetector; opennlp.tools.lang.dutch.Tokenizer; where can I find them (or are there third-party implementations)? Or is there any other way to achieve the same goal? 1- https://github.com/samxhuan/textrank -- Emre Sevinç
