Named entity recognizers: Difference between revisions

From ACL Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
*[http://balie.sourceforge.net/ Balie] Baseline implementation of named entity recognition.
*[http://balie.sourceforge.net/ Balie] Baseline implementation of named entity recognition.
* [http://l2r.cs.uiuc.edu/~cogcomp/asoftware.php?skey=NE English named entity recognizer] - identifies/classifies entities as Person, Location, Organization and Misc (this last category relates to languages and nationalities); fast and robust; try the [http://l2r.cs.uiuc.edu/~cogcomp/ne_demo.php demo]
* [http://l2r.cs.uiuc.edu/~cogcomp/asoftware.php?skey=NE English named entity recognizer] - identifies/classifies entities as Person, Location, Organization and Misc (this last category relates to languages and nationalities); fast and robust; try the [http://l2r.cs.uiuc.edu/~cogcomp/ne_demo.php demo]
*[http://l2r.cs.uiuc.edu/~cogcomp/asoftware.php?skey=FLBJNE_ADV] - Java API to the UIUC NER tagger. Uses gazetteers extracted from Wikipedia, word-class model built from unlabeled text and extensively uses non-local features. Achieves 90.8F1 score on CoNLL03 shared task and is robust on other datasets.
*[http://l2r.cs.uiuc.edu/~cogcomp/asoftware.php?skey=FLBJNE_ADV UIUC NER] - Java API to the UIUC NER tagger. Uses gazetteers extracted from Wikipedia, word-class model built from unlabeled text and extensively uses non-local features. Achieves 90.8F1 score on CoNLL03 shared task and is robust on other datasets.
*[http://nlp.stanford.edu/software/CRF-NER.shtml Stanford NER] Conditional Random Fields based NER. Also incorporates distributional similarity based features extracted from the English Gigaword corpus.
*[http://nlp.stanford.edu/software/CRF-NER.shtml Stanford NER] Conditional Random Fields based NER. Also incorporates distributional similarity based features extracted from the English Gigaword corpus.


[[Category:Software]]
[[Category:Software]]

Revision as of 07:27, 10 December 2008

Software - Named entity recognizers

  • Greek named entity recognizer (version 2) - currently identifies temporal expressions, person names, and organization names; see here for publications describing the recognizer
  • Balie Baseline implementation of named entity recognition.
  • English named entity recognizer - identifies/classifies entities as Person, Location, Organization and Misc (this last category relates to languages and nationalities); fast and robust; try the demo
  • UIUC NER - Java API to the UIUC NER tagger. Uses gazetteers extracted from Wikipedia, word-class model built from unlabeled text and extensively uses non-local features. Achieves 90.8F1 score on CoNLL03 shared task and is robust on other datasets.
  • Stanford NER Conditional Random Fields based NER. Also incorporates distributional similarity based features extracted from the English Gigaword corpus.