stanford-nlp Questions
3
Solved
I have started working on a project which requires Natural Language Processing. We have do the spell checking as well as mapping sentences to phrases and their synonyms. I first thought of using GA...
Mottled asked 5/3, 2010 at 12:29
2
I want to parse the document using stanford nlp and remove stopwords from that, so my question is how to remove stopwords using stanford nlp is there any api to remove that, I find StopWords class ...
Tina asked 25/7, 2013 at 3:56
3
Solved
When building the sample application from the Stanford CoreNLP website, I ran into a curious exception:
Exception in thread "main" java.lang.RuntimeException: edu.stanford.nlp.io.RuntimeIOExceptio...
Ideography asked 28/8, 2013 at 15:48
5
Solved
First of all, Java is not my usual language, so I'm quite basic at it. I need to use it for this particular project, so please be patient, and if I have omitted any relevant information, please ask...
Warfold asked 20/1, 2017 at 10:15
2
I want to find predicate and subject from a sentence using Natural Language Processing Libraries. Is this technique have any name in the world of NLP or Is there any way to do that?
Example : H...
Scheider asked 1/9, 2016 at 3:18
3
Solved
I need to extract relations of the words in a sentence. I'm mostly interested in identifying a subject, predicate and an object. For example, for the follwoing sentence:
She gave him a pen
I'd l...
Origen asked 18/5, 2015 at 17:10
2
Solved
I am trying to analyse some French text with the Stanford CoreNLP tool (it's my first time trying to use any StanfordNLP software)
To do so, I have downloaded the v3.6.0 jar and the corresponding ...
Communicant asked 15/6, 2016 at 14:31
2
I am working on a project that requires me to tag tokens using nltk and python. So I wanted to use this. But came up with a few problems.
I went through a lot of other already asked questions and o...
Makkah asked 11/1, 2016 at 16:14
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 want to use Stanford Parser to create a .conll file for further processing.
So far I managed to parse the test sentence with the command:
stanford-parser-full-2013-06-20/lexparser.sh stanford-p...
Ubald asked 3/7, 2013 at 14:24
3
Solved
I'm performing POS tagging with the Stanford POS Tagger. The tagger only returns one possible tagging for the input sentence. For instance, when provided with the input sentence "The clown weeps.",...
Magician asked 28/5, 2013 at 12:9
2
I'm trying to use nltk.tag.stanford module for tagging a sentence (first like wiki's example) but i keep getting the following error :
Traceback (most recent call last):
File "test.py", line 28, ...
Baronet asked 27/11, 2014 at 12:54
2
When tokenizing texts that contain both Chinese and English, the result will split English words into letters, which is not what I want. Consider the following code:
from nltk.tokenize.stanford_se...
Knit asked 29/8, 2017 at 13:59
3
Solved
I got a problem that CoreNLP can only recognize named entity such as Kobe Bryant that is beginning with a uppercase char, but can't recognize kobe bryant as a person!!! So how to recognize a named ...
Olpe asked 14/7, 2017 at 7:46
18
Is it possible to use Stanford Parser in NLTK? (I am not talking about Stanford POS.)
Southwestwardly asked 14/12, 2012 at 17:12
1
I have a pretty simple problem - recognize money/currency in text.
Sample test case: "Pocket money should NOT exceed INR 4000 (USD 100) per annum."
Fails on the default Stanford parser - online - ...
Ankney asked 4/1, 2017 at 4:1
3
Solved
I am trying to do anaphora resolution and for that below is my code.
first i navigate to the folder where i have downloaded the stanford module. Then i run the command in command prompt to initial...
Ardine asked 24/4, 2018 at 14:54
4
Solved
Stanford CoreNLP provides coreference resolution as mentioned here, also this thread, this, provides some insights about its implementation in Java.
However, I am using python and NLTK and I am no...
Harelda asked 9/9, 2016 at 11:12
3
I have downloaded and installed required jar files from http://nlp.stanford.edu/software/corenlp.shtml#Download.
I have include the five jar files
Satnford-postagger.jar
Stanford-psotagger-3.3.1...
Wellheeled asked 5/3, 2014 at 18:25
2
Solved
I want to use Python Stanford NER module but keep getting an error,I searched it on internet but got nothing. Here is the basic usage with error.
import ner
tagger = ner.HttpNER(host='localhost', ...
Mundford asked 16/4, 2016 at 18:54
5
Solved
My current understanding is that it's possible to extract entities from a text document using toolkits such as OpenNLP, Stanford NLP.
However, is there a way to find relationships between these e...
Determine asked 6/3, 2013 at 23:27
2
It seems the format is, for every line, the string is like 'word number number .....'. So it easy to split it.
But when I split them with the script below
import numpy as np
def loadGloveModel(glo...
Rosarosabel asked 3/3, 2018 at 11:54
3
I am trying my hands on the Stanford dependency parser. I tried running the parser from command line on windows to extract the dependencies using this command:
java -mx100m -cp "stanford-parser.j...
Dahl asked 21/9, 2015 at 1:50
1
I am trying to create a R package so I can use the Stanford CoreNLP wrapper for Apache Spark (by databricks) from R. I am using the sparklyr package to connect to my local Spark instance. I created...
Mccorkle asked 15/10, 2016 at 22:18
4
Solved
I am using the CoreNLP Neural Network Dependency Parser to parse some social media content. Unfortunately, the file contains characters which are, according to fileformat.info, not valid unicode ch...
Fellowman asked 15/11, 2015 at 16:30
© 2022 - 2024 — McMap. All rights reserved.