Skip to content

📝 ML Paper implementation of machine learning paper, Correlation Based Feature Selection

Notifications You must be signed in to change notification settings

Anylee2142/FCBF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Outlines

  1. Implementation of paper, Fast Correlation Based Feature Selection (http://www.aaai.org/Papers/ICML/2003/ICML03-111.pdf)
  2. Extract optimal feature sets using target, Symmetric Uncertainty

    Highly correlated to target
    Remove redundant features

from fcbf import fcbf
X = features
y = target
feature_set, history = fcbf(X, y, threshold=0, base=2, is_debug=True)
# `feature_set` refers tooptimal feature set
# `history` contains removed redundant features

Concepts

  1. Optimal feature set consists of Predominant Features
  2. Predominant Features are features that
    • (1) highly correlated to target
    • (2) there's no feature that correlated more than (1)

References

TODO

  • data to s3

About

📝 ML Paper implementation of machine learning paper, Correlation Based Feature Selection

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages