-

   rss_habrahabr_of_lokoman

 - e-mail

 

 -

 LiveInternet.ru:
: 16.03.2008
:
:
: 2

:


[ ] Stanford NLP , NER

, 15 2018 . 10:53 +
, Stanford nlp .

, , , .

: Stanford NLP , , POS (Part of Speech ), NER (Named-Entity Recognizing ) ..

, , Stanford NLP " ", :

Properties props = new Properties();
props.setProperty("annotators", "tokenize,ssplit,pos,lemma,ner,regexner,parse,depparse,coref");
StanfordCoreNLP pipeline = new StanfordCoreNLP(props);
// create a document object
CoreDocument document = new CoreDocument(text);
// annnotate the document
pipeline.annotate(document);

StanfordCoreNLP , , CoreDocument. StanfordCoreNLP, , .

StanfordCoreNLP , . .

  • tokenize
  • ssplit
  • pos
  • lemma
  • ner , , ..
->

https://habr.com/post/414175/?utm_source=habrahabr&utm_medium=rss&utm_campaign=414175

:  

: [1] []
 

:
: 

: ( )

:

  URL