Tagged Questions
0
votes
1answer
41 views
PyBrain - how to validate my trained network against a test data?
So I have a ClassificationDataSet in PyBrain which I have trained with the appropriate data. Namely, the input is the following:
trainSet.addSample([0,0,0,0],[1])
trainSet.addSample([0,0,0,1],[0])
...
-2
votes
0answers
35 views
AI - Classification vs regression
I am given a training set and I need to answer the following questions.
(e) Train the network on the even-numbered patterns (P = 2, 4,..., 16) in trainSet for a 200 epochs. Use patterns 1, 5, 9 ...
1
vote
1answer
37 views
How to obtain information gain using scikit-learn?
I see that DecisionTreeClassifier accepts criterion='entropy', which means that it must be using information gain as a criterion for splitting the decision tree.
What I need is the information gain ...
-2
votes
0answers
35 views
Printing to screen with Python, error “invalid literal for int” [closed]
I've developed this naive Bayes classifier which is meant to print output to the screen, however I am getting the error mentioned in the title.
Could someone show me how to perform the naive Bayes ...
8
votes
2answers
159 views
Classifiying a set of Images into Classes
I have the problem that I get a set of pictures and need to classify those.
The thing is, i do not really have any knowledge of these images. So i plan on using as many descriptors as I can find and ...
-1
votes
0answers
42 views
define class in python and describe units under feature [closed]
I have to write a script that imports numerous modules and I need to create a class. I want to write a class that will describe the units under a header. I have this so far, but I am confused about ...
-4
votes
1answer
52 views
Python error - bayes classifier [closed]
Trying to make a naive bayes classifier however I keep getting the errors either that the "return is out of the function" or the "indent does not match and level". Any help is greatly appreciated ,
...
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 ...
0
votes
3answers
67 views
python naive bayes classifier error
I'm trying to build a naive bayes classifier which read data from a text file and outputs to a text file and my code is gettin an error sayin the the return is outside of the function however i can ...
1
vote
1answer
77 views
Why is this TFIDF code ouputs 0 frequency for all words? [duplicate]
I got this tfidf from yebrahim and somehow my output document yield all 0 for the result . Any problem with this ?
example of the output is
hippo 0.0
hipper 0.0
hip 0.0
hint 0.0
hindsight 0.0
...
0
votes
0answers
46 views
TF-IDF weighting selection select top k
I am trying to used the tf-idf for features selection. Below is how I calculate the tf-idf
for item in items:
# increment local count
for word in doc_words:
if word in terms_in_doc:
...
-1
votes
0answers
29 views
Python how to include tf-idf into extrat features
#start extract_features
def extract_features(doc):
tweet_words = set(doc)
features = {}
for word in word_features:
features['contains(%s)' % word] = (word in tweet_words)
...
2
votes
1answer
80 views
Python how to train the naives bayes classier
I need a classifier to classify the reviews to positive or negative. For each doc I had done the stopwords filtering and lemmatation and computed the tf-idf for each term and stored them into doc_bow ...
1
vote
2answers
86 views
Using sklearn and Python for a large application classification/scraping exercise
I am working on a relatively large text-based web classification problem and I am planning on using the multinomial Naive Bayes classifier in sklearn in python and the scrapy framework for the ...
0
votes
0answers
39 views
how do i use nltk to classify 3 class
i am trying to use nltk to train 3 class. i am new to it so i don't know how to do it pls help. i look thorough the site ...
2
votes
1answer
95 views
Strategy for scraping web pages, maximizing information gathered
Here's the problem:
Users register for a site and can pick one of 8 job categories, or choose to skip this step. I want to classify the users who've skipped that step into job categories, based on ...
1
vote
0answers
51 views
Python NLTK: supervised learning for classifying unlabelled data, no labelled data available
I'm trying to extract time based information from text, for which as far as I know labelled data doesn't exist. The goal is to take sentences and extract information on when, for example, a task is ...
0
votes
1answer
43 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 ...
3
votes
3answers
91 views
Which algorithms/concepts should i dig for author prediction
I have been working on something that will try to
figure out the author of a column by using my own data set.
I'm planning to use mlpy python library. It has a good documentation,
(about 100 pages ...
0
votes
1answer
84 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 ...
1
vote
0answers
62 views
Orange information score maximum value, in the context of bayesian and tree classifiers
I am working with the Orange package and have written the following code based on the tutorials available:
import orange,orngTest,orngStat,orngTree,Orange
bayes = orange.BayesLearner()
...
0
votes
0answers
124 views
Only integer arrays with one element can be converted to an index error - using facerec in Python
I have get an error when using the facerec by bytefish
Here is my code
# -*- coding:Latin-1 -*-
from facerec.feature import Fisherfaces
from facerec.distance import EuclideanDistance
from ...
0
votes
0answers
78 views
LIBLINEAR vs. LinearSVM from Orange
I used LinearSVM - which is a wrapper around LIBLINEAR - and noticed big differences between the results of the wrapper and the pure implementation? The difference is up to 10% higher for LinearSVM.
...
1
vote
3answers
168 views
Alternative to support vector machine classifier in python?
I have to make comparison between 155 image feature vectors. Every feature vector has got 5 features.
My image are divided in 10 classes.
Unfortunately i need at least 100 images for class for using ...
3
votes
2answers
129 views
How to predict a continuous value (time) from text documents? [closed]
I have about 3000 text documents which are related to a duration of time when the document was "interesting". So lets say document 1 has 300 lines of text with content, which led to a duration of ...
0
votes
1answer
102 views
Learning and using augmented Bayes classifiers in python
I'm trying to use a forest (or tree) augmented Bayes classifier in python, first learning it and then using it for classification. (I'd love to use incremental learning from incomplete data, but I ...
0
votes
1answer
139 views
sklearn logistic regression with unbalanced classes
I'm solving a classification problem with sklearn's logistic regression in python.
My problem is a general/generic one. I have a dataset with two classes/result (positive/negative or 1/0), but the ...
2
votes
3answers
239 views
Machine Learning Email Prioritization - Python
I have been working on a Python coded priority email inbox, with the ultimate aim of using a machine learning algorithm to label (or classify) a selection of emails as either important or ...
1
vote
1answer
221 views
Implement K Neighbors Classifier in scikit-learn with 3 feature per object
I would like to implement a KNeighborsClassifier with scikit-learn module (http://scikit-learn.org/dev/modules/generated/sklearn.neighbors.KNeighborsClassifier.html)
I retrieve from my image ...
2
votes
1answer
264 views
Scikit-learn: is semi-supervised Naive Bayes implementation available?
I would like to use the implementation of Semi-supervised Naive Bayes (Bernoulli) of Scikit-learn. According to this link in github, there was some work and discussion about it one year ago (class ...
4
votes
1answer
249 views
Mixing categorial and continuous data in Naive Bayes classifier using scikit-learn
I'm using scikit-learn in Python to develop a classification algorithm to predict gender of a certain customers. Amongst others I want to use the Naive Bayes classifier but my problem is that I have a ...
1
vote
1answer
69 views
Fit Probabilities in Multi-Label Classifiers
I'd like to use scikit-learn to classifiy into multiple categories, as described here use scikit-learn to classify into multiple categories,
but instead of returning the labels the classifier ...
0
votes
2answers
240 views
How can i get highest frequency terms out of TD-idf vectors , for each files in scikit-learn?
I am trying to get Highest frequency terms out of vectors in scikit-learn.
From example It can be done using this for each Categories but i want it for each files inside categories.
...
1
vote
4answers
177 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 ...
1
vote
1answer
181 views
strange chi-square result using scikit_learn with feature matrix
I am using scikit learn to calculate the basic chi-square statistics(sklearn.feature_selection.chi2(X, y)):
def chi_square(feat,target):
""" """
from sklearn.feature_selection import chi2
ch,pval = ...
1
vote
0answers
122 views
scikit feature importance selection experiences
Scikit-learn has a mechanism to rank features (classification) using extreme randomized trees.
forest = ExtraTreesClassifier(n_estimators=250,
compute_importances=True,
...
1
vote
3answers
196 views
classifying documents in multiple categories
I wrote a classification program based on the Naive Bayes algorithm which works pretty well for classifying one document into only one category. However my context has changed and I now need to ...
0
votes
0answers
313 views
Decrease of accuracy in text classification using Information Gain - implementation check
I am dealing with a text classification problem using machine learning. I have implemented a well known feature selection method, Information Gain, in order to select the top k features. I was ...
2
votes
2answers
412 views
NLTK Maximum Entropy Classifier Raw Score
this is my first question on stackoverflow, so bear with me, please.
I'm doing some corpus building, specifically trying to compose a Khmer/English parallel sentence corpus. I'm using some manually ...
2
votes
2answers
864 views
Input format for classification algorithms in scikit-learn
I'm starting to use the scikit-learn to do some NLP. I've already used some classifiers from NLTK and now I want to try the ones implemented in scikit-learn.
My data is basically sentences, and I ...
0
votes
2answers
192 views
How to programmatically classify a list of objects
I'm trying to take a long list of objects (in this case, applications from the iTunes App Store) and classify them more specifically. For instance, there are a bunch of applications currently ...
0
votes
1answer
149 views
Machine Learning Approach needed: Predict most likely feature value given all other features in a feature vector
I am in need of a suitable machine learning approach that will tell me the most likely value for a feature in a feature vector given the combination of the other features in that vector (and the ...
5
votes
2answers
592 views
How to get most informative features for scikit-learn classifiers?
The classifiers in machine learning packages like liblinear and nltk offer a method show_most_informative_features(), which is really helpful for debugging features:
viagra = None ok : spam ...
2
votes
1answer
291 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 ...
1
vote
1answer
670 views
Sentiment Classification from own Text Data using NLTK
What I am going to ask may sound very similar to the post Sentiment analysis with NLTK python for sentences using sample data or webservice? , But I am done with Parsing and Tokenization of sentences ...
9
votes
2answers
2k views
Save NaiveBayes classifier to disk in Scikits learn
How do I save a trained Naive Bayes classifier to disk and use to predict data?
I have the following sample program from Scikits learn website:
from sklearn import datasets
iris = ...
5
votes
1answer
886 views
use scikit-learn to classify into multiple categories
Im trying to use on of scikit-learn's supervised learning methods to classify pieces of text into one or more categories. The predict function of all the algorithms i tried just returns one match.
...
0
votes
1answer
128 views
appending value in python and writing to a file
I have made a classifier in Python and it works fine. Now I need to output the results into a text file, which I can also do without a problem. The problem is, I need to include the id of the result ...
9
votes
2answers
747 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
403 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 ...
