I am testing Arabic POS tagger and it shows tags as
I have found here but almost all links are broken and no useful info : http://nlp.stanford.edu/software/parser-arabic-faq.shtml
اللاعب/DTNN
عامل/NN
اكتب/VBP
سجل/VBD
تسجل/VBP
قيد/NN
أرسل/VBD بالبريد/NNP المسجل/DTJJ
سجل/VBD السيارة/DTNN
دون/NN في/IN سجل/NN
Where can i learn what does each tag means? And i need the full list? Ty
This is the code i use
var tagger = new MaxentTagger(@"D:\77 sozluk projesi\StandFordPosTagger\stanford-parser-full-2016-10-31\stanford-parser-3.7.0-models\edu\stanford\nlp\models\pos-tagger\arabic\arabic.tagger");
List<string> lstTryWords = new List<string> { "البشر", "بشري", "اللاعب", "عامل", "اكتب", "سجل", " تسجل", " قيد", "أرسل بالبريد المسجل", " سجل السيارة", " دون في سجل" };
foreach (var item in lstTryWords)
{
var sentences = MaxentTagger.tokenizeText(new java.io.StringReader(item.Trim())).toArray();
foreach (java.util.ArrayList sentence in sentences)
{
var taggedSentence = tagger.tagSentence(sentence);
Debug.WriteLine(SentenceUtils.listToString(taggedSentence, false));
}
}
I am testing Arabic POS tagger and it shows tags as
I have found here but almost all links are broken and no useful info : http://nlp.stanford.edu/software/parser-arabic-faq.shtml
اللاعب/DTNN
عامل/NN
اكتب/VBP
سجل/VBD
تسجل/VBP
قيد/NN
أرسل/VBD بالبريد/NNP المسجل/DTJJ
سجل/VBD السيارة/DTNN
دون/NN في/IN سجل/NN
Where can i learn what does each tag means? And i need the full list? Ty
This is the code i use