Top "Pos-tagger" questions

A part-of-speech tagger, or POS tagger, is a concrete implementation of algorithms which associate discrete terms, as well as hidden parts of speech, in accordance with a set of descriptive tags, such as the identification of words as nouns, verbs, adjectives, adverbs, and so on.

What is NLTK POS tagger asking me to download?

I just started using a part-of-speech tagger, and I am facing many problems. I started POS tagging with the following: …

python nlp nltk pos-tagger
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 …

java nlp pos-tagger opennlp
How to use pos_tag in NLTK?

So I was trying to tag a bunch of words in a list (POS tagging to be exact) like so: …

python nlp nltk pos-tagger
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 …

nlp pos-tagger
NLTK was unable to find stanford-postagger.jar! Set the CLASSPATH environment variable

I am working on a project that requires me to tag tokens using nltk and python. So I wanted to …

python nltk stanford-nlp pos-tagger
What does NN VBD IN DT NNS RB means in NLTK?

when I chunk text, I get lots of codes in the output like NN, VBD, IN, DT, NNS, RB. Is …

python nlp nltk text-parsing pos-tagger
Python NLTK pos_tag not returning the correct part-of-speech tag

Having this: text = word_tokenize("The quick brown fox jumps over the lazy dog") And running: nltk.pos_tag(text) …

python machine-learning nlp nltk pos-tagger
How to check a word if it is adjective or verb using python nltk?

i have list of words like amazing, interesting, love, great, nice. And i want to check if word is adjective …

parsing python-3.x nltk pos-tagger
Existing API for NLP in C++?

Is/are there existing C++ NLP API(s) out there? The closest thing I have found is CLucene, a port …

c++ api nlp pos-tagger
How to use OpenNLP to get POS tags in R?

Here is the R Code: library(NLP) library(openNLP) tagPOS <- function(x, ...) { s <- as.String(x) …

r nlp text-mining opennlp pos-tagger