named-entity-recognition Questions
1
Solved
I want to use Stanford NER in python using pyner library. Here is one basic code snippet.
import ner
tagger = ner.HttpNER(host='localhost', port=80)
tagger.get_entities("University of California ...
Neustria asked 30/3, 2013 at 19:48
1
Solved
I can't seem to be able to get the proper instance injected into a class ctor. Here is what I am trying to do:
class Program
{
static void Main(string[] args)
{
WindsorContainer container = new...
Leverett asked 8/3, 2013 at 12:3
6
Solved
In the iOS email client, when an email contains a date, time or location, the text becomes a hyperlink and it is possible to create an appointment or look at a map simply by tapping the link. It no...
Tetragon asked 15/2, 2012 at 14:12
3
I am looking for a free tagged corpus for a system to train on to for Named Entity Recognition. Most of the ones I find (like the New York Times one) are expensive and not open. Can anyone he...
Lucienlucienne asked 25/7, 2010 at 17:27
1
Solved
I am trying to extract named entities from dutch text. I used nltk-trainer to train a tagger and a chunker on the conll2002 dutch corpus. However, the parse method from the chunker is not detecting...
Brookner asked 2/7, 2012 at 11:54
1
Solved
I'm developing a semi-automatic annotation tool for medical texts and I am completely lost in finding the RDF triplets for annotation.
I am currently trying to use an NLP based approach. I have al...
Antechoir asked 28/4, 2012 at 21:44
1
Solved
With existing text categorization (supervised) techniques why don't we consider Named Entities (NE) in the text as a feature in training and testing? Do you think we can improve precision with usin...
Hoenack asked 9/4, 2012 at 18:10
1
Solved
What is the difference between named entity recognition and named entity resolution? Would appreciate a practical example.
Solemnize asked 21/12, 2011 at 11:22
2
Solved
I'm looking for a Java library that can do Named entity recognition (NER) with a custom controlled vocabulary, without needing labeled training data first. I searched some on SE, but most questions...
Mozzarella asked 5/10, 2011 at 15:2
1
Solved
Ok, I have the following code to train the NER Identifier from OpenNLP
FileReader fileReader = new FileReader("train.txt");
ObjectStream fileStream = new PlainTextByLineStream(fileReader);
ObjectS...
Vantassel asked 5/8, 2011 at 6:51
4
Solved
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:...
Regina asked 9/10, 2008 at 16:54
2
Solved
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 tha...
Impenetrability asked 2/10, 2008 at 18:44
© 2022 - 2024 — McMap. All rights reserved.