Python Forum
Feature Selection in Machine Learning
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Feature Selection in Machine Learning
#5
Here's what I would recommend you to do :
Domain Knowledge: Leverage your understanding of the problem to identify potentially irrelevant features.
Univariate Feature Selection: Utilize techniques like:
  • Filter methods: These assess individual features' correlation with the target variable (e.g., chi-squared test, F-test) using scikit-learn's SelectKBest or SelectPercentile from sklearn.feature_selection.
  • Wrapper methods: Evaluate feature subsets based on model performance using RFE (Recursive Feature Elimination) from sklearn.feature_selection.
Model-based Feature Selection: Some models inherently perform feature selection during training (e.g., LASSO regression).
buran write Apr-10-2024, 03:02 AM:
Spam link removed
Reply


Messages In This Thread
Feature Selection in Machine Learning - by shiv11 - Jul-24-2023, 10:25 AM
RE: Feature Selection in Machine Learning - by DataScience - Apr-09-2024, 02:22 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Random Forest to Identify Page: Feature Selection JaneTan 0 1,334 Oct-14-2021, 09:40 AM
Last Post: JaneTan
  [machine learning] identifying a number 0-9 from a 28x28 picture, not working SheeppOSU 0 1,875 Apr-09-2021, 12:38 AM
Last Post: SheeppOSU
  Getting started in Machine Learning Harshil 5 3,293 Dec-07-2020, 04:06 PM
Last Post: sridhar
  Python Machine Learning: For Data Extraction JaneTan 0 1,879 Nov-24-2020, 06:45 AM
Last Post: JaneTan
  IndexError in Array while trying to do machine learning Mariaoye 0 1,918 Nov-12-2020, 12:35 AM
Last Post: Mariaoye
  Feature Selection with different units and strings ltloug01 2 2,012 Oct-16-2020, 01:24 AM
Last Post: jefsummers
  Errors with Machine Learning trading bot-- not sure why MattKahn13 0 1,384 Aug-07-2020, 08:19 PM
Last Post: MattKahn13
  How useful is PCA for machine learning? Marvin93 0 1,555 Aug-07-2020, 02:07 PM
Last Post: Marvin93
  How to extract data from paragraph using Machine Learning with python? bccsthilina 2 3,095 Jul-27-2020, 07:02 AM
Last Post: hussainmujtaba
  Machine Learning: Process Enanda 13 4,363 Mar-18-2020, 02:02 AM
Last Post: jefsummers

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020