In machine learning and statistics, classification is the problem of identifying which of a set of categories a new observation belongs to, on the basis of a training set of data containing observations whose category membership is known.
0
votes
1answer
47 views
which approach for readability classifier
I'm afraid my understanding of the theory behind classifiers is not deep, so please excuse me if my question looks naive to you.
Goal:
Given an arbitrary text, classify it according to age ranges, ...
-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+ ...
0
votes
1answer
129 views
MATLAB: X and Y do not have the same number of observations.(error) classregtree()
Im trying to use function classregtree for building a tree. classTrain is a cell array with 2 string values. I use grp2idx() function for indexing strings, not using this function causes error "X must ...
0
votes
0answers
29 views
How can I visualize the comparison among the accuracy of three different classification algorithms for a polynomial class? [closed]
For example compare ROCs in Rapidminer but it's for bionomial class.
1
vote
0answers
13 views
Bad performance on PASCAL VOC2007 data when use Bags-of-features approach
I used basic components in the bags of features framework:
SIFT + Kmeans + VQ + SVM
I got an average ap of only ~15%, some literatures using similar basic components claim to have average ap of ~45% ...
0
votes
1answer
199 views
how to preprocess data for classification in weka
I am starting to use WEKA and I want to use the k-NN classifier on this dataset
I am able to import the dataset into weka. But when i want to start the classifier, there it does not show me any ...
1
vote
1answer
391 views
Creating a classifier in MATLAB to be used with classperf
I'm working on a new model and would like to use classperf to check the performance of my classifier. How do I make it use my classifier as opposed to one of the built-in ones? All the examples I ...
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
48 views
SVM and Invalid category
I would like to have an invalid category in my SVM classification. For example considering fruit classification, I want to have APPLE, ORANGE, BANANA and 'NOT FRUIT' (invalid). I was wondering if it's ...
0
votes
1answer
62 views
Strange behaviour in Neural Network training? [closed]
I have created a neural network for detection spam.
It involves the following steps;
1.Formation of tf-idf matrix of terms and mails.
2.Reduction of matrix using PCA.
3.Feeding the 20 most important ...
4
votes
2answers
489 views
Handling missing attributes in Naive Bayes classifier
I am writing a Naive Bayes classifier for performing indoor room localization from WiFi signal strength. So far it is working well, but I have some questions about missing features. This occurs ...
3
votes
1answer
110 views
Numerical classifier (?) Weka / R
I have a numeric dataset (as a database table) with a "n to m" relation. For example:
A | B
-----
1 | 1
1 | 2
1 | 9
4 | 2
7 | 8
7 | 11
And I would like to "train" a classifier (using weka?) to tell ...
0
votes
0answers
188 views
how does weka's simple logistic avoid overfitting?
I've read that Support Vector Machines avoid overfitting by choosing an appropriate hyperplane each time. I've also read that logistic regression avoids overfitting by using ridge, which can help with ...
2
votes
1answer
114 views
Group neighboring cells with the same zoneID, MATLAB
Say I have the following matrix of "zones"
brk_group =
1 1 1 1
3 2 2 3
3 3 3 3
I would like to create a "grouping matrix" of these values. A ...
1
vote
2answers
1k views
How to use weka for predict results
Im new to weka and I'm confused with the tool. What I needed to do is im having a data set about fruit price and relating attributes and im trying to predict the specific fruit price using the data ...
-1
votes
1answer
162 views
Ensemble classifier with wrapper method
I'm trying to combine multiple classifiers (ANN, SVM, kNN, ... etc.) using ensemble learning (viting, stacking ...etc.) .
In order to make a classifier, I'm using more than 20 types of explanatory ...
0
votes
1answer
509 views
The within-class variance in each feature of TRAINING must be positive
When trying to fit Naive Bayes:
training_data = sample; %
target_class = K8;
# train model
nb = NaiveBayes.fit(training_data, target_class);
# prediction
y = nb.predict(cluster3);
I ...
0
votes
2answers
322 views
How to deal with missing attribute values in C4.5 (J48) decision tree?
What's the best way to handle missing feature attribute values with Weka's C4.5 (J48) decision tree? The problem of missing values occurs during both training and classification.
If values are ...
0
votes
1answer
110 views
Recall and precision calculation for 3 different outputs
my classification system will produce 3 outputs telling the user what category of an image belongs to. The categories are let say A, B and C. Following are the example of the matrix:
A B ...
3
votes
0answers
155 views
Maven release plugin with classifer snapshot dependencies from command line
I'm attempting to run the maven release plugin from the command line in batch mode for a multi-module project that has dependences that are deployed to the maven repository with a classifier.
The ...
-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 ...
0
votes
0answers
92 views
Naive Bayesian Classification-simple tutorial for android [closed]
im a new in android , im developing an application for my final master project,I have been searching for simple tutorial for Naive Bayesian Classification for 1 month- but im still stuck in this ...
0
votes
0answers
309 views
Bayesian Classifier
When using the Bayesian classifier in matlab what’s the best way to avoid over fitting and inaccuracies?
I am using 1000 samples at the moment for the training data of which 750 are "normal" and 250 ...
0
votes
0answers
211 views
Weka java api classification issue
I am trying to build a text classifier based on weka SMO algo.
I have created the following code based on diferent resources http://pastebin.com/vSek2gZ9
But it is not giving the actual result.
I am ...
6
votes
1answer
360 views
Distance between hyperplanes
I'm trying to teach myself some machine learning, and have been using the MNIST database (http://yann.lecun.com/exdb/mnist/) do so. The author of that site wrote a paper in '98 on all different kinds ...
0
votes
0answers
178 views
Weka: Classifier Theoretical Accuracy Vastly Differs from Test Accuracy
I'm currently training a classifier in Weka to predict a nominal class with 3 potential values from 4 numeric features.
I've used a variety of different classification algorithms: DTNB, LogitBoost, ...
2
votes
1answer
106 views
How should i model the training set in my neural network?
I have a silly confusion but it is bothering me a lot. I have to make an ANN for spam detection. Till now I have developed modules for developing tfidf vectors of mails and calculating PCA of that ...
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
1answer
339 views
Regression Tree Forest in Weka
I'm using Weka and would like to perform regression with random forests. Specifically, I have a dataset:
Feature1,Feature2,...,FeatureN,Class
1.0,X,...,1.4,Good
1.2,Y,...,1.5,Good
1.2,F,...,1.6,Bad
...
1
vote
1answer
156 views
Random Forest in R - many classes
I want to do a multilabel classification with R randomForest.
I have ten classes A..J,
I found examples how to predict a single class, like:
r = randomForest(J ~., data=train, importance=TRUE, ...
1
vote
2answers
43 views
how to label topics automatically when training a classifier
need some ideas on how to label topics automatically when training a classifier. My data set is abt 50000 texts & need to assign pre-defined topics each of them, is there any to do this ...
3
votes
2answers
504 views
Train skin pixels using Opencv CvNormalBayesClassifier
I'm very new to OpenCV. I am trying to use the CvNormalBayesClassifier to train my program to learn skin pixel colours.
Currently I have got around 20 human pictures (face/other body parts) under ...
3
votes
1answer
233 views
Sentiment analysis tool to classify groups
I am working on a machine learning project and I am at the first stage of my progress. I am working on extracting features and testing that features to use or not to use. I have a dataset consisting ...
1
vote
1answer
234 views
ID3 and C4.5: How Does “Gain Ratio” Normalize “Gain”?
The ID3 algorithm uses "Information Gain" measure.
The C4.5 uses "Gain Ratio" measure which is Information Gain divided by SplitInfo, whereas SplitInfo is high for a split where records split evenly ...
5
votes
2answers
503 views
Graph theory - learn cost function to find optimal path
This is a supervised learning problem.
I have a directed acyclic graph (DAG). Each edge has a vector of features X, and each node (vertex) has a label 0 or 1. The task is to find a cost function ...
0
votes
1answer
91 views
Converting images to time series
I'm experimenting using reservoir computing techniques to classify images, but I'm not sure how to convert an arbitrary image to a time series.
I found this approach but it doesn't seem to be general ...
1
vote
1answer
125 views
Hadoop: to train large data(in GB) with multiple tree(sampling say N, for say x RandomTree) and test
I want to write MapReduce (may be multiple rounds!) to
1. Sample N records from Large data - for say X RandomTree
2. Train each tree (totally X)
3. And then test records on all these trees
...
2
votes
1answer
49 views
maximum likelihood and support vector complexity
Can anyone give some references showing how to determine the maximum likelihood and support vector machine classifiers' computation complexity?
I have been searching the web but don't seem to find a ...
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 ...
0
votes
1answer
592 views
Weka Predictions to CSV
I've trained a classifier in Weka, and I'm able to use it on test data. Additionally, I can opt to display the classifier's predictions in the log window for this test data.
However, for my current ...
0
votes
1answer
390 views
Matlab: Recursion to get decision tree
I am trying to implement decision tree with recursion: So far I have written the following:
From a give data set, find the best split and return the branches, to give more details lets say I have ...
2
votes
4answers
130 views
Does prior distribution matter in classification?
Currently I get a classification problem with two classes. what I want to do is that given a bunch of candidates, find out who will more likely to be the class 1. The problem is that class 1 is very ...
0
votes
2answers
322 views
Designing a clustering process using RapidMiner
I haven't had much experience with machine learning or clustering, so I'm at a bit of a loss as to how to approach this problem. My data of interest consists of 4 columns, one of which is just an id. ...
1
vote
1answer
143 views
Strange Neural Network Classification phenomenon
I'm trying to develop a new weight initialization method but i'm getting a weird training phenomenon. You can see that output node 8 is never the max activation...
I'm using the matlab patternnet ...
2
votes
2answers
971 views
Classifying Single Instance in Weka
I trained and created a J48 model using WEKA gui. I saved the model file to my computer and now I would like to use it to classify a single instance in my Java code. I would like to get a prediction ...
0
votes
0answers
68 views
Projecting test data in Principal component analysis
I trying out principal component analysis. I have found out the top k principal components , and projected the training data. Using the "reduced" training data I have estimated the parameters for the ...
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
1answer
1k views
how to calculate roc curves?
I write a classifier (Gaussian Mixture Model) to classify five human actions. For every observation the classifier compute the posterior probability to belong to a cluster.
I want to valutate the ...
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,
...
