I'm current investigating the options to extract person names, locations, tech words and categories from text (a lot articles from the web) which will then feeded into a Lucene/ElasticSearch index. The additional information is then added as metadata and should increase precision of the search.

E.g. when someone queries 'wicket' he should be able to decide wether he means the cricket sport or the Apache project. I tried to implement this on my own with minor success so far. Now I found a lot tools, but I'm not sure if they are suited for this task and which of them integrates good with Lucene or if precision of entity extraction is high enough.

My questions:

  • Do you have some experiences with some of the listed tools and its precision? Or if there is training data required+available.
  • Are there articles or tutorials where I can get started with entity extraction for every tool?
  • How can they be integrated with Lucene?

Here are some questions related to that subject:

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

The problem you are facing in the 'wicket' example is called entity disambiguation, not entity extraction/recognition (NER). NER can be useful but only when the categories are specific enough. Most NER systems doesn't have enough granularity to distinguish between a sport and a software project (both types would fall outside the typically recognized types: person, org, location).

For disambiguation, you need a knowledge base against which entities are being disambiguated. DBpedia is a typical choice due to its broad coverage. See my answer for How to use DBPedia to extract Tags/Keywords from content? where I provide more explanation, and mentions several tools for disambiguation including:

These tools often use a language-independent API like REST, and I do not know that they directly provide Lucene support, but I hope my answer has been beneficial for the problem you are trying to solve.

link|improve this answer
Thanks for your answer and for the pointers! When using NER I hoped to solve the entity disambiguation too, because tagging an article with apache wicket and java, programming language and so on would lead some how to an entity disambiguation solution when mapping them to its categories (e.g. software systems) ... I have to think about it some more time – Karussell Sep 19 '11 at 20:02
on the maui indexer blog (really nice! maui-indexer.blogspot.com) I have found a nice tool: wikipedia-miner.cms.waikato.ac.nz/demos/search/?query=wicket – Karussell Sep 19 '11 at 20:46
NER will generally not help, because as I explained, very few if any NER systems will provide fine-grained distinctions enough identify software and sports, much less distinguish the two. Extractiv is an exception. – John Lehmann Sep 21 '11 at 14:22
Yes, Wiki Miner is a great tool which I forgot about. Miner was developed by a research at the same university as the author of Maui. – John Lehmann Sep 21 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.