Top "Stanford-nlp" questions

Questions on the open source natural language processing software from the Stanford University NLP Group, in Java, Python, and C, including Stanford CoreNLP, Stanza, and GloVe.

Determining whether a word is a noun or not

Given an input word, I want to determine whether it is a noun or not (in case of ambiguity, for …

python nlp stanford-nlp
How can I use Java in Google Colab

I want to use Stanford CoreNLP in my Google Colab Notebook. For that I need Java. Is there a way …

java python stanford-nlp google-colaboratory
what is distant supervision?

According to my understanding, Distant Supervision is the process of specifying the concept which the individual words of a passage, …

nlp stanford-nlp supervised-learning unsupervised-learning
Setting NLTK with Stanford NLP (both StanfordNERTagger and StanfordPOSTagger) for Spanish

The NLTK documentation is rather poor in this integration. The steps I followed were: Download http://nlp.stanford.edu/software/…

python python-3.x nlp nltk stanford-nlp
stanford Core NLP: Splitting sentences from text

I am new to stanford Core NLP. I would like to use it for splitting sentences from text in English, …

java nlp stanford-nlp sentence
How to detect that two sentences are similar?

I want to compute how similar two arbitrary sentences are to each other. For example: A mathematician found a solution …

nlp similarity stanford-nlp opennlp
How to use Stanford parser

I downloaded the Stanford parser 2.0.5 and use Demo2.java source code that is in the package, but After I compile …

java eclipse parsing nlp stanford-nlp
How to remove non-valid unicode characters from strings in java

I am using the CoreNLP Neural Network Dependency Parser to parse some social media content. Unfortunately, the file contains characters …

java regex parsing unicode stanford-nlp
Difference between feature selection, feature extraction, feature weights

I am slightly confused as to what "feature selection / extractor / weights" mean and the difference between them. As I read …

parallel-processing nlp nltk stanford-nlp
NLTK: why does nltk not recognize the CLASSPATH variable for stanford-ner?

This is my code from nltk.tag import StanfordNERTagger st = StanfordNERTagger('english.all.3class.distsim.crf.ser.gz') And i …

python nltk stanford-nlp named-entity-recognition