Re: Named entity extraction/correlation using Semantic Knowledge Graph

2018-10-18 Thread Pratik Patel
> term > > correlation and document similarity. It has produced very good results > > after appropriate tuning. > > > > I was wondering if there is any way the Semantic Knowledge Graph can be > > used to for Named Entity Extraction like person names, companies etc.

Re: Named entity extraction/correlation using Semantic Knowledge Graph

2018-10-17 Thread Alexandre Rafalovitch
gt; correlation and document similarity. It has produced very good results > after appropriate tuning. > > I was wondering if there is any way the Semantic Knowledge Graph can be > used to for Named Entity Extraction like person names, companies etc. > Related cases could be like belo

Named entity extraction/correlation using Semantic Knowledge Graph

2018-10-17 Thread Pratik Patel
Hi Everyone, I have been using Semantic Knowledge Graph for document summarization, term correlation and document similarity. It has produced very good results after appropriate tuning. I was wondering if there is any way the Semantic Knowledge Graph can be used to for Named Entity Extraction

Re: Solr OpenNLP named entity extraction

2018-07-11 Thread Jerome Yang
Thanks a lot Steve! On Wed, Jul 11, 2018 at 10:24 AM Steve Rowe wrote: > Hi Jerome, > > I was able to setup a configset to perform OpenNLP NER, loading the model > files from local storage. > > There is a trick though[1]: the model files must be located *in a jar* or > *in a subdirectory* under

Re: Solr OpenNLP named entity extraction

2018-07-10 Thread Steve Rowe
Hi Jerome, I was able to setup a configset to perform OpenNLP NER, loading the model files from local storage. There is a trick though[1]: the model files must be located *in a jar* or *in a subdirectory* under ${solr.solr.home}/lib/ or under a directory specified via a solrconfig.xml

Re: Solr OpenNLP named entity extraction

2018-07-09 Thread Jerome Yang
Hi Steve, Put models under " ${solr.solr.home}/lib/ " is not working. I check the "ZkSolrResourceLoader" seems it will first try to find modes in config set. If not find, then it uses class loader to load from resources. Regards, Jerome On Tue, Jul 10, 2018 at 9:58 AM Jerome Yang wrote: >

Re: Solr OpenNLP named entity extraction

2018-07-09 Thread Jerome Yang
Thanks Steve! On Tue, Jul 10, 2018 at 5:20 AM Steve Rowe wrote: > Hi Jerome, > > See the ref guide[1] for a writeup of how to enable uploading files larger > than 1MB into ZooKeeper. > > Local storage should also work - have you tried placing OpenNLP model > files in ${solr.solr.home}/lib/ ? -

Re: Solr OpenNLP named entity extraction

2018-07-09 Thread Steve Rowe
Hi Jerome, See the ref guide[1] for a writeup of how to enable uploading files larger than 1MB into ZooKeeper. Local storage should also work - have you tried placing OpenNLP model files in ${solr.solr.home}/lib/ ? - make sure you do the same on each node. [1]

Re: Solr OpenNLP named entity extraction

2018-07-08 Thread Jerome Yang
Hi guys, In Solrcloud mode, where to put the OpenNLP models? Upload to zookeeper? As I test on solr 7.3.1, seems absolute path on local host is not working. And can not upload into zookeeper if the model size exceed 1M. Regards, Jerome On Wed, Apr 18, 2018 at 9:54 AM Steve Rowe wrote: > Hi

Re: Solr OpenNLP named entity extraction

2018-04-17 Thread Steve Rowe
Hi Alexey, First, thanks for moving the conversation to the mailing list. Discussion of usage problems should take place here rather than in JIRA. I locally set up Solr 7.3 similarly to you and was able to get things to work. Problems with your setup: 1. Your update chain is missing the Log

Re: Solr OpenNLP named entity extraction

2018-04-17 Thread David Hastings
Did you send a commit after you sent the document? On Tue, Apr 17, 2018 at 8:23 AM, Alexey Ponomarenko wrote: > Hi once more I am trying to implement named entities extraction using this > manual > https://lucene.apache.org/solr/7_3_0//solr-analysis- >

Solr OpenNLP named entity extraction

2018-04-17 Thread Alexey Ponomarenko
Hi once more I am trying to implement named entities extraction using this manual https://lucene.apache.org/solr/7_3_0//solr-analysis-extras/org/apache/solr/update/processor/OpenNLPExtractNamedEntitiesUpdateProcessorFactory.html I am modified solrconfig.xml like this:

Re: Entity extraction?

2008-10-27 Thread Otis Gospodnetic
: Entity extraction? Solr can do a simple facet seach like FAST, but the entity extraction demands other tecnologies. I do not know how FAST does it but at the company I´m working on (www.cortex-intelligence.com), we use a mix of statistical and language-specific tasks to recognize

RE: Entity extraction?

2008-10-27 Thread Charlie Jackson
True, though I may be able to convince the powers that be that it's worth the investment. There are a number of open source or free tools listed on the Wikipedia entry for entity extraction (http://en.wikipedia.org/wiki/Named_entity_recognition#Open_source_or_free) -- does anyone have any

Re: Entity extraction?

2008-10-27 Thread Walter Underwood
The vendor mentioned entity extraction, but that doesn't mean you need it. Entity extraction is a pretty specific technology, and it has been a money-losing product at many companies for many years, going back to Xerox ThingFinder well over ten years ago. My guess is that very few people really

Re: Entity extraction?

2008-10-27 Thread Rafael Rossini
by adding EE information to the algorithm. Rossini On Mon, Oct 27, 2008 at 2:17 PM, Walter Underwood [EMAIL PROTECTED]wrote: The vendor mentioned entity extraction, but that doesn't mean you need it. Entity extraction is a pretty specific technology, and it has been a money-losing product at many

Re: Entity extraction?

2008-10-27 Thread Walter Underwood
PROTECTED] -Original Message- From: Walter Underwood [mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2008 11:17 AM To: solr-user@lucene.apache.org Subject: Re: Entity extraction? The vendor mentioned entity extraction, but that doesn't mean you need it. Entity extraction

Re: Entity extraction?

2008-10-27 Thread Grant Ingersoll
Max entropy library and create there own named-entity extraction. I had used it in one of the projects which I did with Solr. It is easy to integrate most of the NLP libraries with Solr. Though we had named-entity extraction embedded in our crawler which would populate a field called entities

Re: Entity extraction?

2008-10-27 Thread Grant Ingersoll
On Oct 27, 2008, at 8:53 PM, Ryan McKinley wrote: On Oct 27, 2008, at 6:10 PM, Grant Ingersoll wrote: Warning: shameless plug: Tom Morton and I have a chapter on NER and OpenNLP (and Solr, for that matter) in our book Taming Text (Manning) and the code will be open once we have a place

Re: Entity extraction?

2008-10-25 Thread Julien Nioche
: During a recent sales pitch to my company by FAST, they mentioned entity extraction. I'd never heard of it before, but they described it as basically recognizing people/places/things in documents being indexed and then being able to do faceting on this data at query time. Does anything like

Entity extraction?

2008-10-24 Thread Charlie Jackson
During a recent sales pitch to my company by FAST, they mentioned entity extraction. I'd never heard of it before, but they described it as basically recognizing people/places/things in documents being indexed and then being able to do faceting on this data at query time. Does anything like

Re: Entity extraction?

2008-10-24 Thread Rogerio Pereira
You can find more about this topic in this book availabe at amazon: http://www.amazon.com/Building-Search-Applications-Lucene-Lingpipe/dp/0615204252/ 2008/10/24 Rafael Rossini [EMAIL PROTECTED] Solr can do a simple facet seach like FAST, but the entity extraction demands other tecnologies. I

Re: Entity extraction?

2008-10-24 Thread Ryan McKinley
This is not something solr does currently... It sounds like something that should be added to Mahout: http://lucene.apache.org/mahout/ On Oct 24, 2008, at 4:18 PM, Charlie Jackson wrote: During a recent sales pitch to my company by FAST, they mentioned entity extraction. I'd never heard

RE: Entity extraction?

2008-10-24 Thread Charlie Jackson
Thanks for the replies, guys, that gives me a good place to start looking. - Charlie -Original Message- From: Rogerio Pereira [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2008 5:14 PM To: solr-user@lucene.apache.org Subject: Re: Entity extraction? You can find more about

Re: Entity extraction?

2008-10-24 Thread Rogerio Pereira
/ On Oct 24, 2008, at 4:18 PM, Charlie Jackson wrote: During a recent sales pitch to my company by FAST, they mentioned entity extraction. I'd never heard of it before, but they described it as basically recognizing people/places/things in documents being indexed and then being able to do