Please enable JavaScript.
Coggle requires JavaScript to display documents.
VNCoreNLP (pipeline - > select annotator (Select list annotators…
VNCoreNLP
pipeline - > select annotator
Select list annotators
initialize() PosTagger
return Postagger
Annotation
initialize
String
rawText;
List<String>
tokens;
String
wordSegmentedText;
List<Word>
words;
pipeline.annotate(annotation)
rawSentences
joint tokens to rawSentences,
split by \n
New Sentences with annotated each word
init
Tokenizer
wordSentence = join ~ Token
createWords()
tagger a Sentence
tokens <- split sentence by "\s "
MarMoT Sentence ( tokens )
1 more item...
NERD - NER
Model path+config path
model = CRF.getInputPipe();
configPath
to generate Feature
annotation
add Sentence
add Tokens
add Words
add WordSegmentedText