named-entity-recognition Questions

1

I am using OpenNLP models for Name-entity recognition, but the problem is that it will only recognize US and UK based names (foreign names), so I need to recognize Indian names. How is it possible...
Vertebral asked 16/3, 2016 at 5:47

2

Solved

I'm using CoreNLP for named entity extraction and have run into a bit of an issue. The issue is that whenever a named entity is composed of more than one token, such as "Han Solo", the annotator do...
Appellative asked 9/3, 2014 at 11:59

1

Solved

In NLP there is a concept of Gazetteer which can be quite useful for creating annotations. As far as i understand, A gazetteer consists of a set of lists containing names of entities such as citi...
Jabber asked 25/1, 2016 at 14:35

4

Solved

i just have started with Stanford CoreNLP, I would like to build a custom NER model to find persons. Unfortunately, I did not find a good ner model for italian. I need to find these entities insid...
Feingold asked 28/12, 2015 at 23:54

1

Solved

I am using both python and java to run the Stanford NER tagger but I am seeing the difference in the results. For example, when I input the sentence "Involved in all aspects of data modeling using...
Merrill asked 6/1, 2016 at 5:56

2

Solved

I'm looking to capture measurements using Stanford CoreNLP. (If you can suggest a different extractor, that is fine too.) For example, I want to find 15kg, 15 kg, 15.0 kg, 15 kilogram, 15 lbs, 15 ...

1

Suppose this is my filecontent: When they are over 45 years old!! It would definitely help Michael Jordan. Below is my code for tagging setences. st = NERTagger('stanford-ner/classifiers/engl...
Scanderbeg asked 17/11, 2015 at 10:52

1

Solved

I use regexner to find named entities that are not in the default set of Stanford NLP and it works fine. However, when I add ner annotator, it annotates tokens that match my regular expression with...
Gallman asked 18/9, 2015 at 0:23

2

Solved

I would like to understand the best approach to the following problem. I have documents really similar to resume/cv and I have to extract entities (Name, Surname, Birthday, Cities, zipcode etc). ...
Alibi asked 4/9, 2015 at 14:16

1

Solved

I just have started with OpenNLP. I need to create a simple training model to recognize name entities. Reading the doc here https://opennlp.apache.org/docs/1.8.0/apidocs/opennlp-tools/opennlp/too...
Chilblain asked 14/8, 2015 at 13:43

2

I'm currently on a learning project to extract an individuals name from their CV/Resume. Currently I'm working with Stanford-NER and OpenNLP which both perform with a degree of success out of the ...

1

Solved

I am trying to figure out how to use NLTK's cascading chunker as per Chapter 7 of the NLTK book. Unfortunately, I'm running into a few issues when performing non-trivial chunking measures. Let's s...
Pastrami asked 16/5, 2015 at 0:16

8

Solved

I'm interested in learning more about Natural Language Processing (NLP) and am curious if there are currently any strategies for recognizing proper nouns in a text that aren't based on dictionary r...
Asher asked 3/3, 2009 at 23:56

2

I have a collection of bills and Invoices, so there is no context in the text (i mean they don't tell a story). I want to extract people names from those bills. I tried OpenNLP but the quality of t...
Pantry asked 7/1, 2015 at 8:10

5

I am a newbie to NLP and trying to figure out how a Named Entity Recognizer annotates named entities. I am experimenting with Stanford NER toolkit. When I use the NER on standard more formal datase...
Silly asked 20/11, 2010 at 23:39

1

Solved

I was wondering the amount of work on NLP framework to get partial (without city) or complete postal address extraction with NLP frameworks from unstructured text? Are NLP frameworks efficient to d...
Damp asked 16/11, 2014 at 8:50

10

I have some input text, which contains one or more human person names. I do not have any dictionary for these names. Which Java library can help me to define names from my input text? I looked thro...
Snippet asked 9/12, 2009 at 18:14

1

Solved

Can anyone point out the algorithm(s) used by openNLP NameFinder module? The code is complex and only sparsely documented and playing with it as a black box (with the default model provided) gives ...
Aquiver asked 6/3, 2013 at 15:18

1

Solved

There seem to be a few different settings: iobtags iobTags entitySubclassification (IOB1 or IOB2?) evaluateIOB Which setting do I use, and how do I use it correctly? I tried labelling like this...
Belabor asked 30/1, 2014 at 22:48

2

Solved

Imagine you have millions of records containing text with average 2000 words (each), and also you have an other list with about 100000 items. e.g: In the keywords list you a have item like "presid...
Leftwich asked 26/11, 2013 at 7:55

1

I am trying to use the Custom Feature generation of OpenNLP for Named Finder API. http://opennlp.apache.org/documentation/1.5.3/manual/opennlp.html I went through the documentation but I was not...
Orbicular asked 16/8, 2012 at 14:40

1

Is this possible: to get (similar to) Stanford Named Entity Recognizer functionality using just NLTK? Is there any example? In particular, I am interested in extraction LOCATION part of text. For...
Aeciospore asked 22/8, 2013 at 3:13

3

Solved

What are the recommended methods for extracting locations from free text? What I can think of is to use regex rules like "words ... in location". But are there better approaches than this? Also ...

4

Solved

Are there any paid or free named entity recognition web services available. Basically I'm looking for something - where if I pass a text like: "John had french fries at Burger King&quot...
Jumble asked 21/5, 2010 at 1:55

2

I run following command to start NER server java -mx1000m -cp stanford-ner.jar edu.stanford.nlp.ie.NERServer -loadClassifier ner-model.ser.gz -port 8081 -outputFormat inlineXML In here, I have use...
Jokester asked 1/4, 2013 at 15:49

© 2022 - 2024 — McMap. All rights reserved.