Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SOLR and Natural Language Parsing - Can I use it?

Requirements

Word frequency algorithm for natural language processing

Using Solr

While the answer for that question is excellent, I was wondering if I could make use of all the time I spent getting to know SOLR for my NLP.

I thought of SOLR because:

  1. It's got a bunch of tokenizers and performs a lot of NLP.
  2. It's pretty use to use out of the box.
  3. It's restful distributed app, so it's easy to hook up
  4. I've spent some time with it, so using could save me time.

Can I use Solr?

Although the above reasons are good, I don't know SOLR THAT well, so I need to know if it would be appropriate for my requirements.

Ideal Usage

Ideally, I'd like to configure SOLR, and then be able to send SOLR some text, and retrieve the indexed tonkenized content.

Context

I'm working on a small component of a bigger recommendation engine.

like image 666
andy Avatar asked Jun 02 '10 03:06

andy


Video Answer


3 Answers

I guess you can use Solr and combine it with other tools. Tokenization, stop word removal, stemming, and even synonyms come out of the box with Solr. If you need named entity recognition or base noun-phrase extraction, you need to use OpenNLP or an equivalent tool as a pre-processing stage. You will probably need term vectors for your retrieval purposes. Integrating Apache Mahout with Apache Lucene and Solr may be useful as it discusses Lucene and Solr integration with a machine learning (including recommendation) engine. Other then that, feel free to ask further more specific questions.

like image 97
Yuval F Avatar answered Oct 14 '22 03:10

Yuval F


You can actually configure Solr to use NLP algorithms both when indexing documents and at search time. The first phase (indexing time) can be done using/writing Solr UpdateRequestProcessor plugins for analyzing fields texts while the second phase can be implemented writing a custom QParserPlugin which analyzes the query hit by the user. I've presented an approach for implementing natural language search in Solr at Lucene Eurocon 2011 which takes advantage of Apache UIMA for running (open source) NLP algorithms. You can take a look at the slides and at the video of the talk. Hope this helps. Tommaso

like image 7
Tommaso Teofili Avatar answered Oct 14 '22 03:10

Tommaso Teofili


There is a special request handler designed to apply parsing to filter our less relevant search results. It is based on machine learning of constituency parse trees obtained by OpenNLP.

Please see the blog http://search-engineering.blogspot.com

and the paper http://dx.doi.org/10.1016/j.datak.2012.07.003

This SOLR search request handler will be available as a part of OpenNLP Similarity component

like image 3
Boris Galitsky Avatar answered Oct 14 '22 04:10

Boris Galitsky