stanford-nlp Questions

1

When using the parser or for the matter any of the Annotation in Core NLP, is there a way to access the probability or the margin of error? To put my question into context, I am trying to understa...
Srini asked 22/3, 2013 at 16:9

4

Given an input word, I want to determine whether it is a noun or not (in case of ambiguity, for instance cook can be a noun or a verb, the word must be identified as a noun). Actually I use the PO...
Runkle asked 19/1, 2015 at 21:36

3

Solved

I am using ! pip install glove_python I'm getting this error message: Collecting glove_python Downloading https://files.pythonhosted.org/packages/3e/79/7e7e548dd9dcb741935d031117f4bed133276c2a047...
Agricola asked 27/2, 2021 at 6:11

5

I tried to follow this. But some how I wasted a lot of time ending up with nothing useful. I just want to train a GloVe model on my own corpus (~900Mb corpus.txt file). I downloaded the files provi...
Statecraft asked 24/2, 2018 at 11:10

8

I have recently started to use NLTK toolkit for creating few solutions using Python. I hear a lot of community activity regarding using Stanford NLP. Can anyone tell me the difference between NLTK ...
Snake asked 13/10, 2016 at 3:36

5

Solved

I want to extract the complete relationship between two entities using Stanford CoreNLP (or maybe other tools). For example: Windows is more popular than Linux. This tool requires Java. F...
Beachcomber asked 15/12, 2012 at 13:30

1

A few papers on the topics of word and document embeddings (word2vec, doc2vec) mention that they used the Stanford CoreNLP framework to tokenize/lemmatize/POS-tag the input words/sentences: The ...
Evangelical asked 29/5, 2018 at 12:3

1

I have a bunch of badly formatted text with lots of missing punctuation. I want to know if there was any method to segment text into sentences when periods, semi-colons, capitalization, etc. are mi...
Wolter asked 2/6, 2017 at 12:12

10

Solved

All I want to do is find the sentiment (positive/negative/neutral) of any given string. On researching I came across Stanford NLP. But sadly its in Java. Any ideas on how can I make it work for pyt...
Bernal asked 1/10, 2015 at 4:34

4

Solved

Q1.I am trying to get tense of a complete sentence,just don't know how to do it using nlp. Any help appreciated. Q2 .What all information can be extracted from a sentence using nlp? Currently I c...
Durware asked 3/3, 2014 at 6:12

4

Solved

I have this text '''Hi, Mr. Sam D. Richards lives here, 44 West 22nd Street, New York, NY 12345. Can you contact him now? If you need any help, call me on 12345678''' . How the address part...
Herbage asked 10/6, 2016 at 10:22

1

Given following sentences, for example: A cat is on a bed. The color of the cat is brown. The bed is small. Is there a way to combine/summarize the sentences into a single sentence such as: A b...
Gutsy asked 17/10, 2016 at 17:38

3

I'm having difficulty getting the CoreNLP system to correctly find where one sentence ends and another begins in a corpus of poetry. The reasons why it's struggling: some poems have no punctuat...
Uncinus asked 6/1, 2015 at 21:18

2

I want to find patterns in sentence structure. Therefore I'm trying to get the parse tree as preprocessing. Until now I used the Stanford CoreNLPParser. Many of my sentences are imperative senten...
Levitate asked 8/7, 2019 at 7:28

2

I am working on extracting names of people from various ads appearing in English newspapers . However , i have noticed that I need to identify the boundary of an Ad , before extracting the names ...
Humic asked 19/11, 2013 at 11:4

4

Solved

First I tokenize the file content into sentences and then call Stanford NER on each of the sentences. But this process is really slow. I know if I call it on the whole file content if would be fast...
Jame asked 17/11, 2015 at 3:17

4

I'm using the stanford core NLP and I use this line to load some modules to process my text: props.put("annotators", "tokenize, ssplit, pos, lemma, ner, parse, dcoref"); Is ther a module that i ...
Riki asked 28/11, 2011 at 17:35

3

Solved

I want to compute how similar two arbitrary sentences are to each other. For example: A mathematician found a solution to the problem. The problem was solved by a young mathematician. I c...
Rang asked 21/4, 2013 at 16:4

2

Solved

What I would like to do I would like to transform verbs from present tense to past tense with using NLP library like below. As she leaves the kitchen, his voice follows her. #output As she left th...
Electrothermics asked 17/7, 2020 at 1:2

5

Solved

In Stanford Dependency Manual they mention "Stanford typed dependencies" and particularly the type "neg" - negation modifier. It is also available when using Stanford enhanced++ parser using the we...
Fortney asked 10/6, 2019 at 13:54

2

I'm getting this error: ImportError: cannot import name 'SUTime' from partially initialized module 'sutime' (most likely due to a circular import) when importing the sutime module as: from sutim...
Leekgreen asked 15/1, 2020 at 0:30

2

Solved

Given an NLP parse tree like (ROOT (S (NP (PRP You)) (VP (MD could) (VP (VB say) (SBAR (IN that) (S (NP (PRP they)) (ADVP (RB regularly)) (VP (VB catch) (NP (NP (DT a) (NN shower)) (, ,) (SBAR (W...
Billhook asked 4/9, 2016 at 18:10

1

I'm currently working on a project involving sentence vectors (from a RoBERTa pretrained model). These vectors are lower quality when sentences are long, and my corpus contains many long sentences ...
Bucephalus asked 10/12, 2020 at 1:4

1

I'm interested in extracting triples (subject,predicate,object) from questions. For example, I would like to transform the following question : Who is the wife of the president of the US...
Tynishatynwald asked 13/10, 2014 at 16:45

3

The NLTK documentation is rather poor in this integration. The steps I followed were: Download http://nlp.stanford.edu/software/stanford-postagger-full-2015-04-20.zip to /home/me/stanford Downloa...
Yousuf asked 2/12, 2015 at 7:28

© 2022 - 2024 — McMap. All rights reserved.