Skip to content

Commit

Permalink
Fixed ModuleNotFoundError for LCSI
Browse files Browse the repository at this point in the history
  • Loading branch information
bacalfa committed Jun 14, 2017
1 parent d512eea commit f99c6bb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion skfeature/function/information_theoretical_based/CIFE.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LCSI
from skfeature.function.information_theoretical_based import LCSI


def cife(X, y, **kwargs):
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
@@ -1,4 +1,4 @@
import LCSI
from skfeature.function.information_theoretical_based import LCSI


def jmi(X, y, **kwargs):
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
@@ -1,4 +1,4 @@
import LCSI
from skfeature.function.information_theoretical_based import LCSI


def mifs(X, y, **kwargs):
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
@@ -1,4 +1,4 @@
import LCSI
from skfeature.function.information_theoretical_based import LCSI


def mim(X, y, **kwargs):
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
@@ -1,4 +1,4 @@
import LCSI
from skfeature.function.information_theoretical_based import LCSI


def mrmr(X, y, **kwargs):
Expand Down

0 comments on commit f99c6bb

Please sign in to comment.