Tagged Questions
0
votes
1answer
56 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 ...
2
votes
1answer
63 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 ...
0
votes
1answer
29 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 ...
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
0answers
94 views
create custom dataset for sentiment analysis
I have to create a custom data set for sentiment analysis engine that I’m doing for my dissertation. The worst problem is that i didn't have proper advising and the time that I have to finish the ...
0
votes
2answers
55 views
train nltk classifier for just one label
I am just starting out with nltk, and I am following the book. Chapter six is about text classification, and i am a bit confused about something. In the examples (the names, and movie reviews) the ...
1
vote
2answers
109 views
Classification/Prediction in R
I have a corpus of N documents classified as spam / no-spam. I am following the standard procedure to pre-process the data in R(code here). The pre-processing ends with a DocumenTermMatrix using ...
2
votes
1answer
158 views
Why vector normalization can improve the accuracy of clustering and classification?
It is described in Mahout in Action that normalization can slightly improve the accuracy.
Can anyone explain the reason, thanks!
0
votes
1answer
44 views
(Python Scipy) How to flatten a csr_matrix and append it to another csr_matrix?
I am representing each XML document as a feature matrix in a csr_matrix format. Now that I have around 3000 XML documents, I got a list of csr_matrices. I want to flatten each of these matrices to ...
0
votes
0answers
70 views
Mallet Classification for SVMLight format
I want to use Mallet for SVMlight data format (Label f1:v1 f2:v2 ...) from my program (not command line). How can I do it? In other words, I need the default java class which is run when I do the ...
0
votes
1answer
89 views
How to use NLTK BigramAssocMeasures.ch_sq
I have list of words, I want to calculate the relatedness of two words by considering their co-occurrences. From a paper I found that it can be calculated using pearsson chi-square test. Also I found ...
0
votes
0answers
72 views
wordnet for Arabic language using eclipse [closed]
my project is to built an application which analyse sentiments in Arabic language and classify them into positive and negative , I read a lot of documents and I knew that sentiment should be analysed ...
1
vote
3answers
95 views
what should i do when training set contains some error data in supervised classification?
I am working on a project which perform text auto classification, I have a lot of data set like as below:
Text | CategoryName
xxxxx... | AA
yyyyy... | BB
zzzzz... | AA
then, i will use above ...
0
votes
1answer
139 views
Representing documents in vector space model
I have a very fundamental question. I have two sets of documents, one for training and one for testing. I would like to train a Logistic regression classifier with the training documents. I want to ...
0
votes
1answer
62 views
Detecting noise in a dictionary of topic words
I have a dictionary of about 1500 words. Not all of those 1500 words can be used as topics for text (many of them are noise in my dictionary, perhaps only 2-10% of them can be used as topics), but the ...
1
vote
2answers
438 views
Supervised Latent Dirichlet Allocation for Document Classification?
I have a bunch of already human-classified documents in some groups.
Is there a modified version of lda which I can use to train a model and then later classify unknown documents with it?
-2
votes
1answer
83 views
Ideas for designing an automated content tagging system needed [closed]
I am currently designing a website that amongst other is required to display and organise small amounts of text content (mainly quotes, article stubs, etc.). I currently have a database with 250,000+ ...
-1
votes
2answers
31 views
Classifier for diff reports
I am new to ML. I have a diff report with annotations indicating good diff and bad diff. Example -
OLD STRING NEW STRING DIFF ANNOTATION
abc AbC good
pqr xyz bad
lmn ...
2
votes
1answer
55 views
Clustering search phrases
Am working on this problem where I need to cluster search phrase based on what they are looking for (for now, let's assume they are looking for only places, such as bookstore, supermarket, ..)
"Where ...
1
vote
4answers
180 views
picking the most relevant words from a paragraph [closed]
Not sure how to phrase this question properly, but this is what I intend to achieve using the hypothetical scenario outlined below -
A user's email to me has just the SUBJECT and BODY, the subject ...
0
votes
1answer
101 views
What is the best NLP Classifier available to classify some text?
I am looking to classify web page text into ODP category and was wondering if there is an open source text nlp classifier available and if there is a good documentation on it.
Basically what I want ...
1
vote
1answer
54 views
utilities for transforming a collection of documents into LibSVM format [closed]
I have two different folders, one is for positive class and another is for negative class. Each folder contains a collection of documents. Are there any utilities that can transform this training data ...
0
votes
0answers
123 views
Turning Weka classifier into natural language - Image Analysis and using Classifiers [closed]
I have got a set of models from Weka, which I have been able to read directly into my code, as opposed to using Weka. As a result I now need to turn the rules, into readable and understandable English ...
2
votes
1answer
346 views
Why should we perform cosine normalization for SVM feature vectors?
I was recently playing around with the well known movie review dataset used in binary sentiment analysis. It consists of 1,000 positive and 1,000 negative reviews. While exploring various ...
1
vote
3answers
238 views
Financial news headers classification to positive/negative classes
I'm doing a small research project where I should try to split financial news articles headers to positive and negative classes.For classification I'm using SVM approach.The main problem which I see ...
0
votes
1answer
155 views
Implementing Bayes classifier (in PHP)
I have a theoretical question about a Naive Bayes Classifier. Assume I have trained the classifier with the following training data:
class word count
-----------------
pos good 1
sun 1
...
1
vote
1answer
356 views
Maximum Entropy classifier for big data sets
I have been looking for a maximum entropy classification implementation which can deal with an output size of 500 classes and 1000 features. My training data has around 30,000,000 lines.
I have tried ...
2
votes
1answer
297 views
Python NLTK: How to retrieve percentage confidence in classifier prediction
I am currently training an NLTK classifier to recognize motion commands. These commands can include "move left", "please move forward", "halt!", "move towards the right", etc.
I am currently using ...
0
votes
2answers
361 views
Does stemming harm precision in text classification?
I have read stemming harms precision but improves recall in text classification. How does that happen? When you stem you increase the number of matches between the query and the sample documents ...
1
vote
1answer
390 views
Short text classification
I am about to start a project where my final goal is to classify short texts into classes: "may be interested in visiting place X" : "not interested or neutral". Place is described by set of keywords ...
2
votes
3answers
297 views
AI - String/Text Classification/Categorization (e.g. a string/text is classified as a company name)
My problem is to filter out all the names of persons in a table, i.e. names of companies, schools, institutions will be left in the database.
I tried a simple solution wherein I was given a list of ...
9
votes
2answers
752 views
Training Naive Bayes Classifier on ngrams
I've been using the Ruby Classifier library to classify privacy policies. I've come to the conclusion that the simple bag-of-words approach built into this library is not enough. To increase my ...
1
vote
2answers
408 views
Python NLTK Maximum Entropy Classifier Error
I'm currently using NLTK's Naive Bayes classifier, however I also wanted to try out the Max Ent classifier. It seems from the documentation that it should take the same format for the feature set as ...
1
vote
1answer
88 views
ML based domain specific named enitty recognition (NER)?
I need to build a classifier which identifies NEs in a specific domain. So for instance if my domain is Hockey or Football, the classifier should go accept NEs in that domain but NOT all pronouns it ...
1
vote
1answer
157 views
Named Entity Recognition in political domain
For my research project in text classification, I need to identify named entities in the political domain (using NER to improve the text classification).
Where can I find the named entities in the ...
0
votes
0answers
65 views
Multitask Learning for classifers which are weakly related
In reference to this question , I would like to add some more question like:
How would be the architecture of multitask learning classifier which learns about n number
of classifier?
Say,i have 3 ...
0
votes
3answers
1k views
Twitter Sentiments Analysis useful features
I'm trying to implement Sentiments Analysis functionality and looking for useful features which can be extracted from tweet messages.The features which I have in my mind for now are:
Sentiment words
...
1
vote
1answer
293 views
Using Lingpipe for word-level language model
I have been trying to get a word-level language model to work on lingpipe. All the examples and tutorials I have come across show the character-n-gram model. How to I go about using lingpipe to train ...
4
votes
2answers
201 views
Incrementally Trainable Entity Recognition Classifier
I'm doing some semantic-web/nlp research, and I have a set of sparse records, containing a mix of numeric and non-numeric data, representing entities labeled with various features extracted from ...
1
vote
2answers
196 views
Library to classify text on affect
Are there libraries out there for the automatic classification of text in for example English on affect? If it's quite rough it might still be good enough.
2
votes
1answer
1k views
weka - how to print incorrectly classified instances
my weka output shows:
Correctly Classified Instances 32083 94.0244 %
Incorrectly Classified Instances 2039 5.9756 %
I want to be able to print out what the ...
4
votes
1answer
807 views
Web/broswer-oriented open source machine learning projects?
Applying machine learning techniques, more specifically text mining techniques, in browser environment (mainly JS) or as a web application is not a very widely discussed topic.
I want to build my own ...
8
votes
4answers
1k views
NLP and Machine learning for sentiment analysis
I'm trying to write a program that takes text(article) as input and outputs the polarity of this text, weather its a positive or a negative sentiment. I've read extensively about different approaches ...
3
votes
1answer
661 views
Building/Running a Streaming Weka Text Classifer in Java
We have been using the Weka Explorer GUI to build a few classifier models. Now Testing is complete we would like to implement this model within a Java application so it can take new messages.
So for ...
1
vote
3answers
1k views
Twitter Subjectivity Training Sets
I need a reliable and accurate method to filter tweets as subjective or objective. In other words I need to build a filter in something like Weka using a training set.
Are there any training sets ...
0
votes
3answers
2k views
How I classify an word of a text in things like names, number, money, date,etc?
I did some questions about text-mining a week ago, but I was a bit confused and still, but now I know wgat I want to do.
The situation: I have a lot of download pages with HTML content. Some of then ...
1
vote
1answer
468 views
Large scale naïve Bayes classifier with top-k output
I need a library for naïve Bayes large scale, with millions of training examples and +100k binary features. It must be an online version (updatable after training). I also need top-k output, that is ...
4
votes
2answers
1k views
Which classifier to choose in NLTK
I want to classify text messages into several categories like, "relation building", "coordination", "information sharing", "knowledge sharing" & "conflict resolution". I am using NLTK library to ...
3
votes
5answers
320 views
Help: Extracting data tuples from text… Regex or Machine learning?
I would really appreciate your thoughts on the best approach to the following problem. I am using a Car Classified listing example which is similar in nature to give an idea.
Problem: Extract a data ...
4
votes
3answers
526 views
Feature selection and unsupervised learning for multilingual data + machine learning algorithm selection
Questions
I want to classify/categorize/cluster/group together a set of several thousand websites. There's data that we can train on, so we can do supervised learning, but it's not data that we've ...
