part-of-speech Questions
10
Solved
The Stanford NLP, demo'd here, gives an output like this:
Colorless/JJ green/JJ ideas/NNS sleep/VBP furiously/RB ./.
What do the Part of Speech tags mean? I am unable to find an official list. I...
Logbook asked 2/12, 2009 at 14:30
3
Solved
I am working on an NLP project and I need the following functionality illustrated by an example. Say there is a sentence
Tell Sam that he will have to leave without Arthur, as he is sick.
In ...
Smallman asked 23/6, 2017 at 6:4
1
Solved
I'm trying to implement a Part-of-Speech tagger using neural network with the help of Keras.
I'm using a Sequential model, and training data from NLTK's Penn Treebank Corpus(i.e. from nltk.corpus ...
Enactment asked 14/11, 2016 at 16:55
1
Solved
My question is related to WordNet Interface.
>>> wn.synsets('cat')
[Synset('cat.n.01'), Synset('guy.n.01'), Synset('cat.n.03'),
Synset('kat.n.01'), Synset('cat-o'-nine-tails.n.01'),
...
Burnside asked 16/1, 2016 at 19:28
2
What are the weaknesses and strengths of the Brill Tagger? Can you suggest some possible improvements for the tagger?
Firearm asked 26/2, 2010 at 13:30
1
Solved
Let's try out Python's renouned part-of-speech tagger in the nltk package.
import nltk
# You might also need to run nltk.download('maxent_treebank_pos_tagger')
# even after installing nltk
strin...
Sixteenth asked 10/7, 2015 at 20:34
1
The nltk package's built-in part-of-speech tagger does not seem to be optimized for my use-case (here, for instance). The source code here shows that it's using a saved, pre-trained classifier call...
Bourgeon asked 13/7, 2015 at 14:33
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
Solved
So I was analyzing a text corpus and I used stemmer for all the tokenized words.
But I also have to find all the nouns in the corpus so I again did a nltk.pos_tag(stemmed_sentence)
But my question ...
Gitt asked 1/12, 2014 at 11:11
1
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: http://www.mozart-oz.org/...
Galatia asked 16/8, 2011 at 21:31
2
I understand the implicit value of part-of-speech tagging and have seen mentions about its use in parsing, text-to-speech conversion, etc.
Could you tell me how is the output of a PoS tagger forma...
Dynasty asked 2/6, 2014 at 7:19
1
Solved
My data pre-processing for data clustering needs part of speech (POS) tagging. I am wondering if there's some library in C# ready for this.
Trakas asked 19/2, 2014 at 4:53
1
Solved
I have multiple texts and I would like to create profiles of them based on their usage of various parts of speech, like nouns and verbs. Basially, I need to count how many times each part of speech...
Impalpable asked 20/5, 2012 at 15:41
1
Solved
I'm trying to learn natural language processing (of English) using NLTK and Python.
Is there a way to get the infinitive form of the verb during or after POS-tagging.
For example:
is (VBZ) => to...
Recurvate asked 18/3, 2012 at 23:51
1
Is there a microformat for basic natural language process that has tags for sentences, words, parts-of-speech, etc...? I have searched the web but could not find any.
Censor asked 15/9, 2011 at 1:12
1
© 2022 - 2024 — McMap. All rights reserved.