In machine learning, this is the process of selecting a subset of most relevant features to construction your data model.

learn more… | top users | synonyms

0
votes
0answers
28 views

Model based clustering of features for classification [closed]

I am new in statistical modelling and so please pardon if the question appears trivial. I have a set of multi- dimensional data (T) where each dimension represents features (fi) for video based ...
-1
votes
1answer
31 views

Feature Selection for identifying important criteria [closed]

I am working on credit scoring models and I want to classify the corporates which borrow loan from a bank according to their financial ratios (all of the criteria are quantitative). but before ...
1
vote
2answers
63 views

Natural Language Processing - Features for Text Classification

So I'm trying to classify texts using Weka SVM. So far, my feature vectors used for training the SVM are composed of TF-IDF statistics for unigrams and bigrams that appear in the training texts. But, ...
0
votes
0answers
22 views

Need help using HOG for feature extraction in matlab

Can anyone help me in visualizing the results of HOG in Matlab. I have taken a look at HOGpicture.m but i am not understanding the parameter w, is there anyother simple method for visualizing HOG in ...
0
votes
1answer
37 views

Implementing Backward Greedy for Feature Selection

I'm trying to apply feature selection of a dataset with 1700 features and 3300 instances. One of the ways for feature selection is stepwise regression. It is a greedy algorithm that deletes the worst ...
0
votes
1answer
23 views

Feature selection using PCA

Data set consists of N elements and K variables. Using PCA I can reduce the number of variables, but how to check which from K of variables provided the most informations? For example I have data set ...
0
votes
0answers
24 views

How can HOG be used to detect individual body parts

Information: I would like to use OpenCV's HOG detection to identify the various body parts of a human (ie be able to identify the Upper Arm, Lower Arm, Chest, Hips, Upper Leg, Lower Leg, Feet/Shoes). ...
0
votes
1answer
116 views

Classification using R in a data set with numeric and categorical variables

I'm working on a very big data-set.(csv) The data set is composed from both numeric and categorical columns. One of the columns is my "target column" , meaning i want to use the other columns to ...
-1
votes
2answers
59 views

Identify the limbs of a human in an image [closed]

Information: I am looking to identify the limbs of a human in an image. For the sake of simplicity, one can assume that the Image has been filtered of all background and that only the Human is ...
0
votes
1answer
34 views

Classification of new instances in weka

In our training set, we performed feature selection (ex. CfsSubsetEval GreedyStepwise) and then classified the instances using a classifier (ex. J48). We have saved the model Weka created. Now, we ...
1
vote
0answers
13 views

Categorical Proportional Difference thrown off by “one-off” words?

I'm trying out different feature selectors for an email classification piece of AI (spam or nonspam?). When I got to Categorical Proportional Difference (herein CPD), I thought sweet, sounds like ...
0
votes
1answer
111 views

Text classification with neural network

Can someone tell me how can I classify some text messages using neural network.? Is there any examples? how do I preprocess text messages to train the neural network? Thanks
0
votes
1answer
39 views

SVM LibSVM Ignore Feature 1,3,5 when Predicting

this question is about LibSVM or SVMs in general. I wonder if it is possible to categorize Feature-Vectors of different length with the same SVM Model. Let's say we train the SVM with about 1000 ...
0
votes
1answer
78 views

Feature selection for multilabel classification (scikit-learn)

I'm trying to do a feature selection by chi-square method in scikit-learn (sklearn.feature_selection.SelectKBest). When I'm trying to apply this to a multilabel problem, I get this warning: ...
2
votes
0answers
103 views

How to combine two features (two minimum distance classifiers)

Hello All with my first post here, I work on tracking objects through images without prior training. I use two features, the color of the region (the ab channels of the Lab space) and the HOG. In my ...
0
votes
0answers
60 views

Optimal Resolution and Training Set for Feature Based Image Recognition

I am again curious. I am using Android NDK with OpenCV which allowed me to set up pretty robust environment to test out different binary algorithms such as BRIEF, BRISK, FREAK and ORB. My problem ...
0
votes
2answers
99 views

Difference between PCA (Principal Component Analysis) and Feature Selection

What is the difference between Principal Component Analysis (PCA) and Feature Selection in Machine Learning? Is PCA a means of feature selection?
0
votes
0answers
72 views

Matlab libSVM, use weights from weka

In matlab I have a matrix X and a vector Y where X is a matrix with features as columns and instances as rows and Y is a vector of labels. For example: X = 0 1 3 0 4 0 2 ...
0
votes
0answers
21 views

How to fix training set and testing set when using sequentialfs()

I'm now working on Matlab and I'm wondering how to do features selection with one-class SVM (LibSVM). I know that there is a function called sequentialfs() which is designed to do feature selection ...
0
votes
2answers
101 views

Feature Selection in dataset containing both string and numerical values?

Hi I have big dataset which has both strings and numerical values ex. User name (str) , handset(str), number of requests(int), number of downloads(int) ,....... I have around 200 such columns. Is ...
1
vote
3answers
188 views

How are feature_importances in RandomForestClassifier determined?

I have a classification task with a time-series as the data input, where each attribute (n=23) represents a specific point in time. Besides the absolute classification result I would like to find out, ...
0
votes
1answer
129 views

find important features for classification

I'm trying to classify some EEG data using a logistic regression model (this seems to give the best classification of my data). The data I have is from a multichannel EEG setup so in essence I have a ...
0
votes
0answers
51 views

Conceptual queries on retrieving 'visually similar' images: Dense SIFT or other descriptor?

I am posting 3 images of my dataset to show how my image visually looks: http://s1306.photobucket.com/user/Bidisha_Chakraborty/library/?page=1 I am using VLFFeat DSIFT implementation. I am using per ...
0
votes
1answer
275 views

OpenLayers Click on selected Feature triggering function

I am using OpenLayers to draw point features on a map with a cluster strategy. strategy = new OpenLayers.Strategy.Cluster(); clusters = new OpenLayers.Layer.Vector("Clusters", { ...
0
votes
0answers
21 views

Why do correlations matter in simulating data to compare classifiers when p >> N?

In genomics and computational biology, expression data sets contain a much larger number of features (p) than the number of observations (N). I wanted to simulate data where p>>N to compare the ...
0
votes
1answer
77 views

Strategies for handling nominal values with numerical attributes

I'm using a data set that consists of mostly nominal values from SFDC (e.g. EE Names, Title, Role, Lead Source, Account Name, etc.) and am trying to correlate the features to a boolean class of ...
0
votes
0answers
116 views

generic feature selection in R

Essentially, A wrapper feature selection is generic: run each model on a subset of features, and compare different models based on a criterion. I'm looking for such ability on R: I would like to ...
0
votes
1answer
88 views

feature selection

I have document-term data with terms as dimensions. I have to perform feature selection on the terms and I intend to use Mutual Information as the measure to perform feature selection. My doubt here ...
4
votes
0answers
359 views

SVM Feature Selection in R

I am training a SVM classifier. Right now, I have about 4000 features, but a lot of them are redundant/uninformative. I want to reduce the features in the model to about maybe 20-50. I would like to ...
0
votes
1answer
169 views

sentiment analysis , feature selection

I want to know what are the appropriate tools for each step to analyse sentiment : removing stopwords, stemming, Vector Representation of Text, feature selection, classification, how to pass from ...
0
votes
1answer
61 views

Is it possible to use SVM to learn a training sample with an input of “Feature Matrix” rather than a “Feature Vector”?

Is it possible to use SVM to learn a training sample with an input of "Feature Matrix" rather than a "Feature Vector" ? I need to classify XML documents by representing each document as a Feature ...
1
vote
2answers
260 views

Most important features of CMS [closed]

Suppose there is a new CMS coming out and you can choose and rate features to have there. Choose 5 of them. 1st place is for the most important ones, last place is for not so much important ones. ...
0
votes
0answers
87 views

Combining Naive Bayes and SVM for spam filtering

I am working on a hybrid algorithm that can be obtained by combining Naive bayes and SVM for spam filtering. Please help with different ways of combining the algorithms. Also what are the different ...
0
votes
2answers
202 views

Correlated features and classification accuracy

I'd like to ask everyone a question about how correlated features (variables) affect the classification accuracy of machine learning algorithms. With correlated features I mean a correlation between ...
0
votes
1answer
41 views

fetch the selected variables in 'step' method in R

I am removing unnecessary/spurious variables from my data using 'step' function. I am using the folloeing code: state.x77 st = as.data.frame(state.x77) colnames(st)[4] = "Life.Exp" # no ...
2
votes
1answer
247 views

Perform Chi-2 feature selection on TF and TF*IDF vectors

I'm experimenting with Chi-2 feature selection for some text classification tasks. I understand that Chi-2 test checks the dependencies B/T two categorical variables, so if we perform Chi-2 feature ...
2
votes
1answer
85 views

whether mysql has something like autoupdate

Database table schema. CREATE TABLE `stackoverflow`.`automatic` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `values` VARCHAR( 200 ) NOT NULL , `counts` BIGINT NOT NULL ) ENGINE = ...
3
votes
2answers
156 views

Choosing Features to identify Twitter Questions as “Useful”

I collect a bunch of questions from Twitter's stream by using a regular expression to pick out any tweet that contains a text that starts with a question type: who, what, when, where etc and ends with ...
0
votes
3answers
232 views

How can feature selection methods be evaluated? [closed]

Hello, How can I choose the best fit feature selection method for a given dataset (textual data) ? In Weka for example, there are several attribute selection methods (CfsSubsetEval, ...
-1
votes
2answers
204 views

Best Feature Selection Algorithm For Document Classification [closed]

I am working on a document classification project. I am using tf-idf and centroid algorithms. But I need a dictionary, for using that algorithms. I have tried information gain for maikng a dictionary ...
4
votes
0answers
227 views

Mutual Information and Chi Square relationship

I've used the following code to compute the Mutual Information and Chi Square values for feature selection in Sentiment Analysis. MI = (N11/N)*math.log((N*N11)/((N11+N10)*(N11+N01)),2) + ...
-1
votes
2answers
61 views

What is feed-forward wrapper method for feature selection?

For a school project I need to choose a dataset from UCI repository and classify the data with KNN after processing it with "feed forward wrapper" feature selection. Googling for "feed forward ...
1
vote
0answers
121 views

Feature Selection Implementation C# [closed]

Are there any library for implementing feature selection methods in c# ? I tried my best search but I didn't find something useful .. I'm focusing on specific feature selection methods which are : ...
1
vote
0answers
15 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% ...
1
vote
1answer
304 views

Recursive feature elimination in 'caret' for 'randomForest': set different ntree parameter for the first forest

I am currently trying to optimize the random forest classifier for a very high-dimensional dataset (p > 200k) using recursive feature elimination (RFE). caret package has a nice implementation for ...
0
votes
0answers
75 views

anomaly intrusion detection relevant features

I am researching on Anomaly Intrusion Detection to implement one. At this phase, I am searching for relevant features to network traffic. I found 41 features from KDD CUP'99 project (the paper: ...
1
vote
0answers
28 views

To training a Decision Tree model, what is the better way to deal with attributes represented by a vector?

In most of instruction discussing Decision Tree, the attributes are represented by a single value, and then these values are concatenated as a feature vector. It makes sense since normally the ...
0
votes
1answer
139 views

sci-kit learn: Identifying the corresponding feature-id values when using SelectKBest

I am using sci-kit learn (version 0.11 with Python version 2.7.3) to select the top K features from a binary classification dataset in svmlight format. I am trying to identify the feature-id values ...
2
votes
1answer
290 views

Parallelize rfcv() function for feature selection in randomForest package

I wonder if anyone knows how to parallelize rfcv() function implemented in R-package 'randomForest'. Sorry if the question sounds very basic, but I tried to do this using 'foreach' without any ...
4
votes
1answer
329 views

What to do first: Feature Selection or Model Parameters Setting?

This is more of a "theoretical" question. I'm working with the scikit-learn package to perform some NLP task. Sklearn provides many methods to perform both feature selection and setting of a model ...

1 2