Natural language processing (NLP) is a subfield of artificial intelligence and machine learning that involves transforming or extracting useful information from natural language data.
-3
votes
1answer
26 views
Use natural language processor to get subject / topic of text in PHP [closed]
I'm looking for a natural language processor, in PHP, that can be given a string that is a sentence or text and it returns the topic or subject of that text.
For example, if given the text ' How tall ...
-1
votes
0answers
11 views
Stanford core nlp1.3.5 update trouble
After updating the Stanford core nlp1.3.5, I found no package edu.stanford.nlp.semgrex. semgrexPattern and SemgrexMatcher were also missing. Which methods I can use in the new package, and how?
0
votes
1answer
41 views
Predict scores for documents?
I have a set of documents and their corresponding scores, which are something very similar to the number of upvote/downvote on SO. I'd like to build a system that is able to predict the score given a ...
0
votes
0answers
21 views
How to get challenges and responses from NLP Captcha
I have recently used a PhP script to pull Google recaptcha into my web page, and now I'd like to do the same with NLP Captcha.
But I am stuck at how to submit the challenge and response. This is the ...
1
vote
1answer
22 views
Part of speech for unknown and known words
what are the different between part of speech tagging for unknown words and part of speech tagging for known words. Is there any tool that can predict part of speech tagging for the words ..
-1
votes
0answers
14 views
nlp corpus for non english language
I am new to NLP, I want to work on developing a corpus for a language which does not have a standard corpus. The language does not use English alphabets. The corpus will then be manually annotated for ...
0
votes
0answers
11 views
nlp: alternate spelling identification
Help by editing my question title and tags is greatly appreciated!
Sometimes one participant in my corpus of "conversations" will refer to another participant using a nickname, usually an ...
0
votes
0answers
18 views
download text of an article in google news
I'd like to do some natural language processing (nlp) mining based on news.
google has a smart way of extracting a useful text from news articles. that's the text it displays in google news. is there ...
0
votes
1answer
32 views
How can i use natty-master?
I should use natty-master in my android project. But i couldn't import it. How can i use natty without maven? I find these codes, i added jars but it doesn't work.
import java.util.Date;
import ...
0
votes
1answer
29 views
Cannot convert element type object to dategroup
I m using natty algorithm in my project but i m getting cannot convert type object to dategroup at that line "for(DateGroup group:groups)" My codes are below. What should i do?
Parser ...
1
vote
1answer
24 views
Best library for automatic document classification [closed]
The problem: we have a bunch of documents (magazine articles) that need to be put into "categories". Some categories reflect the subject of the article (what the article is about) and some other ...
0
votes
1answer
61 views
Natural Language Processing (NLP) with Java
I'm starting a project in which sentiment analysis is going to take center stage. Specifically, we'll be doing sentiment analysis of Twitter, Facebook, YouTube and other social network data.
I know ...
0
votes
1answer
52 views
Naive bayes text classification fails in one category. Why? [closed]
I am implementing Naive Bayes classifier for text category detection.
I have 37 categories and I've got accuracy about 36% on my test set.
I want to improve accuracy, so I decided to implement 37 ...
1
vote
1answer
38 views
How can I smartly extract information from an HTML page?
I am building something that can more or less extract key information from an arbitrary web site. For example, if I crawled a McDonalds page and wanted to figure out programatically the opening and ...
0
votes
1answer
47 views
How can I reliably replace “you” with “me” or “I” when changing the perspective of dialogue?
Using Java, I would like to take sentences like this:
I will take you to the park because you asked nicely.
Into this:
You will take me to the park because I asked nicely.
Converting "I" ...
1
vote
1answer
37 views
Regular Expression Doesn't Work Properly With Turkish Characters
I write a regex that should extracts following patterns;
"çççoookkk gggüüüzzzeeelll" (it means vvveeerrryyy gggoooddd with turkish characters "ç" and "ü")
"ccccoookkk ggguuuzzzeeelll" (it means the ...
2
votes
1answer
51 views
Splitting HTML Content Into Sentences, But Keeping Subtags Intact
I'm using the code below to separate all text within a paragraph tag into sentences. It is working okay with a few exceptions. However, tags within paragraphs are chewed up and spit out. Example:
...
-1
votes
0answers
31 views
how to perform text stemming in matlab [closed]
I hava a text corpus and I need to employ stemming to pre-process the text data. I want to know if there are some libraries that provide this function as it's troublesome to write from the beginning.
...
-2
votes
0answers
22 views
Any Possible solution of detecting the type of content [closed]
I have been researching on language processing. What My main goal is to detect type of content by checking its words. So for example I have a text like this
2 people died in a ship accident in ...
-2
votes
1answer
30 views
string comparison initially i have file it consist of all english words and user input [closed]
in the below code consist of 2 variable first one is the array_of_encrypt variable it consist of all the English word it store in the word.txt next variable is send_msg it consist of user input i want ...
-1
votes
0answers
13 views
in search of Auditory NLP [closed]
i would like to know if software is written or can be written concerning auditory NLP (natural language processing) in essence software that gives the user the ability to speak and the computer ...
0
votes
1answer
42 views
Python - Can a web server avoid imporing for every request?
I'm working on a Python project, currently using Django, which does quite a bit of NLP work in a form post process. I'm using the NLTK package, and profiling my code and experimenting I've realised ...
-1
votes
0answers
17 views
NER for movies and TV-Shows [closed]
does anyone know if exsist a trained STanford-NER model, or labelled data to train on that would label Movies and TV-Shows in text?
thanks
0
votes
1answer
51 views
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 and run the program it has many errors.
A part of my program is:
public class ...
0
votes
0answers
35 views
FrameNet and NLTK
I have to classify semantic relation of words in sentences.
I am thinking to use FrameNet but I am not sure if it can be sue with NLTK (Python).
Anyone know if it possible to use FrameNet with NLTK?
...
-1
votes
0answers
16 views
Looking for English/Spanish legal law or/and medical documents for my language identification research [closed]
I wondering where to get public English/Spanish legal law or/and medical documents with a lot of Latin terms for my language identification research. But, unfortunately, I couldn't find those ...
1
vote
1answer
54 views
NLP model training
I just started with NLP (Natural Language Processing) and struggling to understand one important concept. How to train system for relation extraction on future inputs?
For example, I have few lines ...
1
vote
1answer
58 views
Naive Bayes Text Classifier - determining when a document should be labelled 'unclassified'
I have designed and implemented a Naive Bayes Text Classifier (in Java). I am primarily using it to classify tweets into 20 classes. To determine the probability that a document belongs to a class I ...
-1
votes
1answer
62 views
Sentence Extraction
Let's say I have the following:
A list of sentences (with no punctuation)
A long string of words (with no punctuation)
My goal is to segment this string into chunks of sentences, excluding words ...
0
votes
1answer
26 views
How to use website search bar function in code
While a user can type in a search term in an onsite search bar directly, how can I do the same thing in code, especially when there is no known api? Say I want to know whether Macy's carry "baby ...
1
vote
2answers
51 views
Sentence formation: Punctuation checks in java
I want to check the quality of sentence formation. Specifically, I am looking to see if the end-user types a space after a punctuation.
I am okay with a NLP library, or a simple java regex solution ...
0
votes
0answers
32 views
Building a Sentence Tree
I have gone through OpenNLP, NLTK and few other less famous libraries of natural language processing. I realize, this is not what I need, I mean level of complexity is too high.
I just need to ...
0
votes
1answer
38 views
Working with named-entity datasets
I am working on a classification task where we are building models that detect the type of an entity present in a span of text (ie, annotation). These models can be built with a dataset where each ...
0
votes
1answer
24 views
Weka ignoring unlabeled data
I am working on an NLP classification project using Naive Bayes classifier in Weka. I intend to use semi-supervised machine learning, hence working with unlabeled data. When I test the model obtained ...
0
votes
0answers
34 views
Supplied Mahout .7 Classify 20 news group example does not work
Using the mapr M3 VM which uses ubuntu linux and Hadoop, and installing Mahout .7 (manually the mapr install for it is not working) The included examples do not work. when classify-20newsgroups is ...
4
votes
1answer
53 views
How do I convert words to their equivalent number?
If I have a positive integer written as a string, such as "three" or "forty nine", is there a simple way to convert this to an integer?
I'm happy using Linguistics to convert the other way, but I've ...
0
votes
1answer
18 views
Dealing with homographs when counting n-grams in scikit-learn
I'm using TfIdfVectorizer to count n-grams in the text, but I need to lemmatize it first. One written form can correspond to different lemmas, so all of them should be counted. How can I deal with it ...
-1
votes
0answers
15 views
Extract publication date from news, blogs [closed]
I designed a library to extract timestamp candidates from blog webpages, based on the HTML code, i.e. I look for given patterns and try to find matching strings.
Let's make some assumptions:
my ...
0
votes
1answer
39 views
NLTK: filter sentences with specific structures
How to filter sentences with specific structures using NLTK?
For example, we have the following definition of a context free grammar:
1. S → NP VP
2. S → Aux NP VP
3. S → VP
4. NP → Pronoun
...
1
vote
0answers
29 views
Stupid Backoff implementation clarification
Hello people I'm implementing the Stupid Backoff (page 2, equation 5) smoothing technique for a project I'm working on and I have a question on its implementation. This is a smoothing algorithm used ...
-1
votes
0answers
17 views
Why are the topics yielded, by trained LDA model, for a new query different from the topics extracted while triaining the corpus?
I am using Gensim for topic modelling. While training I specified 50 topics. When I try to extract topics for a new query I usually don't get the topics out of the 50 that I specified earlier, ...
-3
votes
0answers
73 views
How to find if an input string is encrypted or is valid English word? [closed]
How to find the given input string is encrypted or is valid English word?
I need to check the input message from the user is encrypted or not, for a class project. I'm developing a email server using ...
0
votes
0answers
21 views
Any FSM/FSA Based Tagger
There are several good taggers around. I even asked a question creating own tagger,
I have got another requirement now. In Python I was using topia and it seemed a great choice for job (fast and ...
0
votes
1answer
29 views
More issues regarding the installation of Rstem package
This question is related to this one (issues in installing Rstem package), but i think the answer provided in the previous one isn't working for my case.
I've downloaded the source package and the ...
0
votes
1answer
22 views
Change value of leaf in NLTK
I want to change the value of a leaf in a parsed tree object in NLTK. I use the following code.
t = Tree(line)
chomsky_normal_form(t, horzMarkov=2, vertMarkov=1, childChar = "|", parentChar = "^")
...
1
vote
1answer
85 views
Resumé Parsing in .Net framework using Natural Language Processing
I'm trying to compare two resumés. I have a criteria that if certain fields match it is a duplicate. As you may know, resumé styles differ. How do I understand that the name field is a name field, so ...
1
vote
0answers
31 views
Context of the sentence
I am developing an application for android calendar but i need finding a programme or codes to understand context of the sentence. According to the context, my program will save the date to the ...
0
votes
2answers
33 views
How to fuzzily search for a dictionary word?
I have read a lot of threads here discussing edit-distance based fuzzy-searches, which tools like Elasticsearch/Lucene provide out of the box, but my problem is a bit different. Suppose I have a ...
2
votes
1answer
50 views
How to fuzzily search for dictionary words?
Suppose I have a dictionary of words, {'cat', 'cot', 'catalyst'}, and a character similarity relation f(x, y)
f(x, y) = 1, if x and y are similar
= 0, otherwise
These "similarities" can be ...
0
votes
0answers
26 views
Calling exe program with arguments from Prolog code in Windows
How can I run an exe program from my Prolog code and then use the output(which are Prolog predicates) produced by the program in my code?
Specifically, I have been trying to access the output of ...





