Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
1k views

Looking for any free tagged english corpus(es)

Does anyone know of any free (licensed free for commercial use) tagged English corpus(es) that can be used to train a part of speech (POS) tagger? The only ones I have seen online seem to start in ...
4
votes
1answer
1k views

How to use openNLP with java

I want to POStag an English sentence and do some processing. I would like to use openNLP. I have it installed When I execute the command ...
3
votes
2answers
219 views

Trying to use HPSG PET Parser

Hi I'm trying to use the PET Parser, but the documentation given for usage is insufficient. Can anyone point me to a good article or tutorial on using PET? Does it support utf-8?
2
votes
1answer
226 views

Baum-Welch algorithm for pos tagger

everyone. I'm using the Baum-Welch algorithm to train a pos tagger,it is totally in the unsupervised way. Here comes the problem: When i get the label result, I only get a sequence of numbers. I can't ...
2
votes
3answers
392 views

Ideas for NLP Project

I've been working on a NLP project, trying to define an intermediate POS tagging system and the wrappers for known POS tagging systems for migrating to mine. My question is : What is the best POS ...
1
vote
4answers
52 views

What Is the Difference Between POS Tagging and Shallow Parsing?

I'm currently taking a Natural Language Processing course at my University and still confused with some basic concept. I get the definition of POS Tagging from the Foundations of Statistical Natural ...
1
vote
1answer
75 views

Topia Term Extract - Italian Lexicon

I'm looking for a tool to extract topic keywords from text. Topia seems to be a good solutions, anyway it does not came with an italian-lexicon file. Searching on the web i couldn't find a ...
1
vote
1answer
85 views

How to obtain better results using NLTK pos tag

I am just learning nltk using Python. I tried doing pos_tag on various sentences. But the results obtained are not accurate. How can I improvise the results ? broke = NN flimsy = NN crap = NN Also ...
1
vote
1answer
107 views

Introduction to Support vector machines

hi every one i m doing POS tagging using SVM tool but i dont understand how to construct feature vector from training corpus.Can someone help me about this matter.
1
vote
1answer
164 views

what is the MeCab output and the tagset?

Can someone enlighten me on the MeCab default output? what annotation does the MeCab output and where can i find the tagset for the morpho analyzer http://mecab.sourceforge.net/ can anyone decipher ...
1
vote
1answer
173 views

korean, thai and indonesian POS tagger

can someone recommend an open source POS tagger for korean, indonesian, thai and vietnamese? that i can use to tag the corpus data that i currently have. (e.g. the stanford-postagger ...
1
vote
2answers
503 views

Stanford POS tagger in Java usage

Mar 9, 2011 1:22:06 PM edu.stanford.nlp.process.PTBLexer next WARNING: Untokenizable: � (U+FFFD, decimal: 65533) Mar 9, 2011 1:22:06 PM edu.stanford.nlp.process.PTBLexer next WARNING: Untokenizable: � ...
0
votes
2answers
186 views

Build a Part-of-Speech Tagger (POS Tagger)

I need to build a POS tagger in Java and need to know how to get started. Are there code examples or other resources that help illustrate how POS taggers work?
0
votes
0answers
13 views

How can I convert CLAWS7 tags to Penn tags?

Does anyone of you know a way to convert a tag from CLAWS7 tagset to it's equivalent in Penn tagset? CLAWS7 tagset: http://ucrel.lancs.ac.uk/claws7tags.html Penn tagset: ...
0
votes
1answer
137 views

how the tokenization is done in Stanford POS tagger?

hi i am going to use Stanford POS tagger to tag the sentences, for that i want to split the documents into sentences and then sentences to tokens. As i am using java for the first time i just want to ...
0
votes
1answer
40 views

How can I add more tagged words to the Stanford POS-Tagger's trained models?

I haven't found anything in the documentation about adding more tagged words to the tagger, specifically the bi-directional one. Thanks
0
votes
2answers
1k views

Stanford POS tagger in Java

I'm trying this: Sentence<TaggedWord> taggedString = MaxentTagger.tagStringTokenized("here is a string to tag"); which gives me: Error: ...
-1
votes
0answers
31 views

Not able to initialize tagger [closed]

I am trying to use similarity system but the problem with this is that the similarity.jar already contains qtag class which is not able to find path of "qtag-eng.lex" I am working in eclipse-IDE ...