Re: Solr NLS custom query parser

2017-06-15 Thread aruninfo100
Hi Michael, I have indexed the documents in such a way,I used OpenNLP to extract named entities and POS and has indexed these data to respective fields. I have read(my understanding) that for natural language search using Solr,once you have the entities extracted the next step is to create a

Solr NLS custom query parser

2017-06-14 Thread aruninfo100
Hi, I am trying to configure NLP search with Solr. I am using OpenNLP for the same.I am able to index the documents and extract named entities and POS using OpenNLP-UIMA support and also by using a UIMA Update request processor chain.But I am not able to write a query parser for the same.Is there

Re: Unable to enrich UIMA annotated results to Solr fields

2017-05-29 Thread aruninfo100
I was able to resolve the issue.I was passing the extracted text content of each document to Solr for indexing after converting to lowercase(did this for a different usage).When the original content(without converting lowercase) was indexed annotated entities were enriched to respective fields to

Unable to enrich UIMA annotated results to Solr fields

2017-05-25 Thread aruninfo100
Hi All, I am trying to integrate openNLP-UIMA with Solr.I have installed the pear package generated by building the opennlp-uima source. I have analyzed the text files using *CAS Visual Debugger* by loading the respective AE and tokens are annotated as expected. *Solrconfig:*

Re: SolrSpellChecker returning suggestions for words present in index

2017-05-11 Thread aruninfo100
Hi Alessandro, I tried the suggestions on the parameters you have specified and is working fine now.Thanks. Thanks and Reagrds, Arun -- View this message in context: http://lucene.472066.n3.nabble.com/SolrSpellChecker-returning-suggestions-for-words-present-in-index-tp4334554p4334756.html

Re: SolrSpellChecker not showing suggestions when the first character of a word is wrong

2017-05-11 Thread aruninfo100
It worked.Adding 0 to search handler did the trick.Thanks. On May 11, 2017 3:13 PM, "Atita Arora [via Lucene]" < ml+s472066n433458...@n3.nabble.com> wrote: Hi Arun, Try adding 0 to your configuration. It should work ! Thanks, Atita On Thu, May 11, 2017 at 6:34

SolrSpellChecker not showing suggestions when the first character of a word is wrong

2017-05-10 Thread aruninfo100
Hi All, I am trying to do spell check with Solr.I am able to get suggestions when the word is incorrectly spelled. Eg:-word entered(incorrectly) :*maintaan* I am getting *"maintain" *as suggestion,but if I provide *naintain*,it doesnt provide suggestions. *solrConfig:* text_general default

Unable to index UIMA field into Solr

2017-04-11 Thread aruninfo100
Hi All, I am trying to integrate UIMA with Solr.I was able to do the same.But some of the UIMA fields are not getting indexed into solr whereas other *fields like pos,ChukType are getting indexed*. I am using openNLP-UIMA together for text analysis. When I tried to index the UIMA field for

Re: Integrating Solr with OpenNLP-UIMA pear file

2017-04-10 Thread aruninfo100
I was able to figure out the issue.I was directly calling the installed pear file in Solr updateRequestHandler.Once I mapped the pear file inside a AE xml file and pointing the AE file in requesthandler solved the issue. -- View this message in context:

Integrating Solr with OpenNLP-UIMA pear file

2017-04-09 Thread aruninfo100
Hi, I am trying to integrate Solr - UIMA with openNLP support. I had posted this query earlier.I have been working around this to make it work.But no luck. PF the same: Exception-while-integrating-UIMA-with-Solr

Exception while integrating UIMA with Solr

2017-03-25 Thread aruninfo100
Hi, I am trying to integrate UIMA with Solr. I have created the pear file(packaged and installed)- opennlp.uima.OpenNlpTextAnalyzer_pear.xml I am using openNLP -uima annotators for document analysis. The pear(xml) file is located at path:D:\temp\opennlp.uima.OpenNlpTextAnalyzer *folder

RE: Exception while integrating openNLP with Solr

2017-03-22 Thread aruninfo100
Hi, I applied the LUCENE-2899.patch which provide the openNLP capabilities to solr for nlp capabilities.One such feature it provides is lemmatization,which helps to match the root word.But integrating the same was too much time consuming(indexing). It provides you with POS,Sentence

RE: Exception while integrating openNLP with Solr

2017-03-22 Thread aruninfo100
Hi, Thanks for the reply. Kindly find the filed type scghema i am using : Does the *opennlp_text* field be indexed="true"? Here the en-lemmatizer.txt is 7mb in size.Without lemmatization usually the whole indexing process takes on an average

RE: Exception while integrating openNLP with Solr

2017-03-22 Thread aruninfo100
Hi I am really finding it difficult to index documents using openNLP lemmatizer.The indexing is taking too much time(including commit).Is there a way to optimize or increase the performance. Also it will be helpful in knowing different opennlp lemmatizer implementations which are also good

RE: Exception while integrating openNLP with Solr

2017-03-22 Thread aruninfo100
Hi, I was able to resolve the issue.But when I run the indexing process it is taking too long to index bigger documents and some times I get java heap memory exception. How can I improve the performance while using dictionary lemmmatizers. Thanks and Regards, Arun -- View this message in

Exception while integrating openNLP with Solr

2017-03-21 Thread aruninfo100
Hi, I am trying to integrate openNLP with Solr. The fieldtype is : en-lemmatizer.txt->The file has a size close to 5mb. I am using the lemmatizer dictionary from below link:

Re: Exception during integration of Solr with UIMA

2017-03-20 Thread aruninfo100
Hi Tommaso, Thanks for the reply. In the UIMAUpdateRequestProcessor I have only OpenCalais liscence entry and no other entries.So I need to remove the same right. VALID_OPENCALAIS_KEY . Do i need to make modifications/remove in the OverridingParamsExtServicesAE.xml file for OpenCalais ?

Exception during integration of Solr with UIMA

2017-03-20 Thread aruninfo100
Hi All, I am trying to integrate UIMA with Solr.I am following the steps mentioned in https://cwiki.apache.org/confluence/display/solr/UIMA+Integration .But when I try to index the documents,exceptions are thrown in terminal and solr log is also logged with error traces.I have been trying to