Tagged Questions
7
votes
3answers
2k views
Methods for Geotagging or Geolabelling Text Content
What are some good algorithms for automatically labeling text with the city / region or origin? That is, if a blog is about New York, how can I tell programatically. Are there packages / papers ...
5
votes
4answers
4k views
Named Entity Recognition Libraries for Java
I am looking for a simple but "good enough" Named Entity Recognition library (and dictionary) for java, I am looking to process emails and documents and extract some "basic information" like:
Names, ...
4
votes
3answers
893 views
Is there a better tool than opencalais?
Opencalais lets you submit a string (REST API) ....and it will analyze that string and break it down into named-entities, relationships, keywords, etc.
Are there better tools other than opencalais? ...
4
votes
4answers
1k views
Strategies for recognizing proper nouns in NLP
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 ...
3
votes
1answer
170 views
Understanding Relevance Score of OpenCalais
I am trying to understand what is the relevance score that opencalais returns associated with each entity? What does it signify and how is it to be interpreted? I would be thankful for insights into ...
3
votes
2answers
301 views
Is NER necessary for Coreference resolution?
... or is gender information enough?
More specifically, I'm interested in knowing if I can reduce the number of models loaded by the Stanford Core NLP to extract coreferences. I am not interested in ...
2
votes
1answer
720 views
Named Entity Recognition for NLTK in Python. Identifying the NE
I need to classify words into their parts of speech. Like a verb, a noun, an adverb etc..
I used the
nltk.word_tokenize() #to identify word in a sentence
nltk.pos_tag() #to identify the parts ...
2
votes
10answers
722 views
Algorithms recognizing physical address on a webpage
What are the best algorithms for recognizing structured data on an HTML page?
For example Google will recognize the address of home/company in an email, and offers a map to this address.
1
vote
1answer
36 views
Difference between named entity recognition and resolution?
What is the difference between named entity recognition and named entity resolution? Would appreciate a practical example.
1
vote
1answer
110 views
There is a entity recognizer classifier algorithm that doesn't needs entire texts for training data?
I want to recognize some entities on texts that I have and I found a lot of algorithms (NaiveBayes, Hidden Markov Models, Conditional Random Field, etc.), but seems that almost all needs a huge ...
1
vote
1answer
311 views
How I train an Named Entity Recognizer identifier in OpenNLP?
Ok, I have the following code to train the NER Identifier from OpenNLP
FileReader fileReader = new FileReader("train.txt");
ObjectStream fileStream = new PlainTextByLineStream(fileReader);
...
1
vote
1answer
61 views
Finding words from a dictionary in a string of text
How would you go about parsing a string of free form text to detect things like locations and names based on a dictionary of location and names? In my particular application there will be tens of ...
1
vote
2answers
249 views
Part-Of-Speech tagging and Named Entity Recognition for C/C++/Obj-C
need some help!
I'm trying to write some code in objective-c that requires part-of-speech tagging, and ideally also named entity recognition. I don't have much interest in "rolling my own", so I'm ...
1
vote
2answers
314 views
Does OpenNLP use WordNet under the hood for the Named Entity Recognition
I have tried using OpenNLP Tools 1.5 from SourceForge for getting the Named Entites from a text. I did find a JWNL file in the OpenNLP download. Does that imply that OpenNLP in turn is using WordNet ...
1
vote
1answer
85 views
Information extraction. Counting mentions to measure relevance
Is it possible to count how many times an entity has been mentioned in an article? For example
ABC Company is one of the largest car manufacturers in the
world. It is also the largest
company ...
1
vote
2answers
390 views
How to recognize names from a text using php
I want to extract name(firstnames and lastnames) from a text using php.
Example:
From text below I want to extract names(in this case Aline Wright and Jesse Wright)
Aline Wright is a cancer ...
0
votes
0answers
25 views
Training ne_chunk in NLTK using custom data
I am experimenting with named entity recognition using NLTK. Just started playing with ne_chunk function. The default one (provided out of box) is not classifying things correctly. How can I train it ...
0
votes
1answer
66 views
Maximum Entropy for Natural Language Processing [closed]
Can anyone explain simply how how maximum entropy models work when used in Natural Language Processing. I need to statistically parse simple words and phrases to try to figure out the likelihood of ...
0
votes
3answers
331 views
How I classify an word of a text in things like names, number, money, date,etc?
I did some questions about text-mining a week ago, but I was a bit confused and still, but now I know wgat I want to do.
The situation: I have a lot of download pages with HTML content. Some of then ...
0
votes
1answer
183 views
Text mining - extract name of band from unstructured text
I'm aware that this is kind of a general, open-ended question. I'm essentially looking for help in deciding a way forward, and perhaps for some reading material.
I'm working on an algorithm that ...
0
votes
0answers
72 views
Getting type of NE out of POS Tagger (OpenNLP)
When using the german POS set, all named entities where marked with NE. The thing is to get the type of the named entity, like Person, Location or Organization. Is there a way to get this?
0
votes
2answers
335 views
Named Entity Recognition from personal Gazetter using Python
I try to do named entity recognition in python using NLTK.
I want to extract personal list of skills.
I have the list of skills and would like to search them in requisition and tag the skills.
I ...
0
votes
2answers
425 views
Named entity recognition with preset list of names for Python / PHP
I'm trying to process a CSV file that has as in each row a text field with the name of organization and position of an individual within that organization as unstructured text. This field is usually ...
0
votes
6answers
875 views
How to define person's names in text (Java)
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 through ...