Y0gesh Gupta
Y0gesh Gupta

Reputation: 2204

Feature selection from sklearn logisitc regression

I have created a binary classification model for a text using sklearn logistic regression model. Now I want to select the features used for model. My code looks like this-

train, val, y_train, y_test = train_test_split(np.arange(data.shape[0]), lab, test_size=0.2, random_state=0)
X_train = data[train]
X_test = data[val]

#X_train, X_test, y_train, y_test = train_test_split(data, lab, test_size=0.2)
tfidf_vect = TfidfVectorizer(analyzer='word', ngram_range=(1,3), min_df = 0, stop_words = 'english')
X_tfidf_train = tfidf_vect.fit_transform(X_train)
X_tfidf_test = tfidf_vect.transform(X_test)
clf_lr = LogisticRegression(penalty='l1')
clf_lr.fit(X_tfidf_train, y_train)
feature_names = tfidf_vect.get_feature_names()
print len(feature_names)
y_pred_lr = clf_lr.predict_proba(X_tfidf_test)[:, 1]

What will be the best approach to do this.

Upvotes: 0

Views: 4530

Answers (1)

M.achaibou
M.achaibou

Reputation: 101

you can use sklearn.feature_selection

here's a link of how you can use it http://scikit-learn.org/stable/modules/generated/sklearn.feature_selection.RFE.html#sklearn.feature_selection.RFE

Upvotes: 1

Related Questions