All Questions
15 questions
0
votes
1
answer
3k
views
Python glove missing module 'glove' 'Glove'
Here is what I performed:
Installed pip3 install glove_py ok.
In Jupyter Python, import glove works ok.
from glove import *
Problem:
When I try a basic setup code to ensure all the modules are ...
0
votes
2
answers
590
views
Text Processing Tools for German and Spanish Languages
I'm trying to process text in German and Spanish languages. Working on English text is straight forward because of myriad NLP packages on this language. But it's not easy for other languages. I Found ...
0
votes
0
answers
114
views
Classify text based on location/time from an establishing mention
Given a longer English text (> a few paragraphs), is there a rule-based NLP approach to classifying a set of text to be occurring at a place or time, from an establishing phrase? For example:
Alice ...
0
votes
1
answer
574
views
Extracting Part of Speech (Source and Destinations) using text mining/NLP?
I need to extract the source and destination terms from the text documents using text mining/NLP/Information Retrieval ?
ex :
1. i am travelling from New York to London.
2. i am heading towards ...
0
votes
2
answers
1k
views
NLP & ML Phrase Extraction
What ML Algorithms can I use to train Action phrases in a given Sentence.
Sentence1:I want to play cricket
Label1: play cricket
Sentence2: Need to wash my clothes
Label2: wash clothes
I have a data ...
0
votes
2
answers
359
views
error in initCoreNLP , specially "annoators"
I have used coreNLP package & stanford Parser thorugh rJAVA,NLP,openNLP,coreNLP package
Here is my code
sent_token_annotator <- Maxent_Sent_Token_Annotator()
word_token_annotator <- ...
2
votes
0
answers
148
views
How to classify extracted relations (NLP)?
There are some not labeled corpus. I extracted from it triples (OBJECT, RELATION, OBJECT). For relation extraction I use Stanford OpenIE. But I need only some of this triples. For example, I need ...
1
vote
1
answer
311
views
How to convert String tokens into CoreLabel instances (StanfordNLP)?
Can we convert a String token into a CoreLabel instance?
So far, I am using:
CoreLabelTokenFactory c = new CoreLabelTokenFactory();
CoreLabel tokens = c.makeToken("going",0,"going".length());
The ...
0
votes
1
answer
397
views
What is the best way to split a sentence for a keyword extraction task?
I'm doing a keyword extraction using TD-IDF on a large number of documents. Currenly I'm splitting each sentence based on n-gram. More particularly I'm using tri-gram. However, this is not the best ...
5
votes
2
answers
5k
views
Relationship Extraction using Stanford CoreNLP
I'm trying to extract information from natural language content using the Stanford CoreNLP library.
My goal is to extract "subject-action-object" pairs (simplified) from sentences.
As an example ...
0
votes
1
answer
673
views
compare TypedDependencies from Stanford NLP dependency parser tree
I am trying a semantic match between two sentences by comparing the dependencies.
I am getting two Stanford dependency trees from two different sentences. I want to compare and get a score for the ...
1
vote
1
answer
1k
views
Does an algorithm exist to identify different queries/questions in sentence?
I want to identifies different queries in sentences.
Like - Who is Bill Gates and where he was born? or Who is Bill Gates, where he was born? contains two queries
Who is Bill Gates?
Where Bill ...
1
vote
1
answer
188
views
Summarization of text document (Multi document i.e News) By finding events
Respected Sir, Mem
I Wants to summarizing of text document (any unstructured i.e news Data). My first target is to find important events in this given text data and next(2nd step) based on these ...
1
vote
1
answer
2k
views
NLP - subject of sentence [closed]
I am trying to get the main subject of a sentence, i.e what a sentence is talking about (not the grammatical subject which may be different).
So far I have got
1.) OpenNLP in Java which is giving ...
3
votes
2
answers
3k
views
Paraphrase recognition using sentence level similarity
I'm a new entrant to NLP (Natural Language Processing). As a start up project, I'm developing a paraphrase recognizer (a system which can recognize two similar sentences). For that recognizer I'm ...