pos-tagger Questions
3
Solved
I tried to POS tag a sentence in Scala using Stanford parser like below
val lp:LexicalizedParser = LexicalizedParser.loadModel("edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz");
lp.setOption...
Kandacekandahar asked 24/8, 2013 at 8:29
1
Solved
I'm using the Stanford Tagger for determining the Parts of Speech. However, I want to get more information out of the text. Is there a possibility to get further information like the tense of the s...
Polis asked 21/10, 2013 at 13:31
1
Solved
I just implemented a program that uses the Stanford POS tagger in Java.
I used an input file of a few KB in size, consisting of a few hundred words. I even set the heap size to 600 MB.
But it is ...
Substitute asked 31/3, 2013 at 6:53
1
This is my code and the error message:
>>> from nltk.tag.stanford import StanfordTagger
>>> st = StanfordTagger('bidirection-distsim-wsj-0-18.tagger')
Traceback (most recent cal...
Witness asked 20/11, 2012 at 17:32
2
Solved
Scikit-learn has fairly user-friendly python modules for machine learning.
I am trying to train an SVM tagger for Natural Language Processing (NLP) where my labels and input data are words and ann...
Paralogism asked 18/10, 2012 at 2:53
1
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
Al...
Shifra asked 16/11, 2011 at 4:30
1
Solved
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 deciph...
Tanny asked 7/4, 2011 at 9:19
2
Solved
I'm trying to use the PET Parser, but the given documentation for usage is insufficient. Can anyone point me to a good article or tutorial on using PET? Does it support UTF-8?
Ergo asked 13/10, 2010 at 18:40
1
Solved
i've tried the following code and installed
from http://code.google.com/p/hunpos/downloads/list
english-wsj-1.0
hunpos-1.0-linux.tgz
i've extracted the file onto '~/' directory
and when ...
Orchard asked 23/2, 2011 at 13:15
1
Solved
Can someone help me with the syntax for hunpos tagging a corpus in nltk?
What do I import for the hunpos.HunPosTagger module?
How do I HunPosTag the corpus? See the code below.
import nltk
...
Carricarriage asked 23/2, 2011 at 8:18
2
Solved
Is it possible to extract noun+noun or (adj|noun)+noun using the R package openNLP? That is, I would like to use linguistic filtering to extract candidate noun phrases. Could you direct me how to d...
Groggy asked 5/1, 2011 at 3:34
1
Solved
I am looking for an open source Natural Language Processing library for c/c++ and especially i am interested in Part of speech tagging.
Unguentum asked 26/11, 2009 at 18:29
© 2022 - 2024 — McMap. All rights reserved.