Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jundongl committed Mar 15, 2016
1 parent 7262dba commit f90b080
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions skfeature/function/information_theoretical_based/CIFE.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ def cife(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features,)
index of selected features, F[1] is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Brown, Gavin et al. "Conditional Likelihood Maximisation: A Unifying Framework for Information Theoretic Feature Selection." JMLR 2012.
"""

if 'n_selected_features' in kwargs.keys():
n_selected_features = kwargs['n_selected_features']
F = LCSI.lcsi(X, y, beta=1, gamma=1, n_selected_features=n_selected_features)
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/CMIM.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def cmim(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features,)
index of selected features, F(1) is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/DISR.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def disr(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features, )
index of selected features, F[1] is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/FCBF.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def fcbf(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features,)
index of selected features, F[1] is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/ICAP.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def icap(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features,)
index of selected features, F(1) is the most important feature
index of selected features, F[0] is the most important feature
"""
n_samples, n_features = X.shape
# index of selected features, initialized to be empty
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/JMI.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def jmi(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features,)
index of selected features, F[1] is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/LCSI.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def lcsi(X, y, **kwargs):
Output
------
F: {numpy array}, shape: (n_features,)
index of selected features, F[1] is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/MIFS.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def mifs(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features,)
index of selected features, F[1] is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/MIM.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def mim(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features, )
index of selected features, F[1] is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Expand Down
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/MRMR.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def mrmr(X, y, **kwargs):
Output
------
F: {numpy array}, shape (n_features,)
index of selected features, F[1] is the most important feature
index of selected features, F[0] is the most important feature
Reference
---------
Expand Down

0 comments on commit f90b080

Please sign in to comment.