You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by Apache Wiki <wi...@apache.org> on 2015/12/21 01:08:34 UTC

[Tika Wiki] Trivial Update of "TikaAndNER" by ThammeGowda

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tika Wiki" for change notification.

The "TikaAndNER" page has been changed by ThammeGowda:
https://wiki.apache.org/tika/TikaAndNER?action=diff&rev1=4&rev2=5

Comment:
Fixed a typo, added a note for CoreNLP users

  
  # using three entity types from the above table for demonstration
  wget "$URL_PREFIX/en-ner-person.bin" -O $PATH_PREFIX/ner-person.bin
- wget "$URL_PREFIX/en-ner-location.bin" -O $PATH_PREFIX/ner-person.bin
+ wget "$URL_PREFIX/en-ner-location.bin" -O $PATH_PREFIX/ner-location.bin
  wget "$URL_PREFIX/en-ner-organization.bin" -O $PATH_PREFIX/ner-organization.bin
  
  export TIKA_APP={your/path/to/tika-app}/target/tika-app-1.12-SNAPSHOT.jar
@@ -74, +74 @@

  ==== Using Stanford CoreNLP NER ====
     The 'org.apache.tika.parser.ner.corenlp.CoreNLPNERecogniser' class provides runtime bindings to [[http://nlp.stanford.edu/software/CRF-NER.shtml|Stanford CoreNLP CRF classifiers]] for named entity recognition.
  
+ 
  The following steps are necessary to use this NER implementation:
   * Add Core NLP library and its dependencies to classpath
   * Add models to class path
   * Set NER Implementation to CoreNLP
+ 
+ NOTE: The latest release of Stanford CoreNLP requires JDK8.
  
  ===== Tika + CoreNLP in action =====
  {{{#!