From 81da48ec3106c5f952478a5060c52e966d2f9367 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Thu, 19 May 2022 11:41:09 +0200 Subject: [PATCH] Fix format issue --- mufs/Selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mufs/Selection.py b/mufs/Selection.py index eb328e6..9eb6ed9 100755 --- a/mufs/Selection.py +++ b/mufs/Selection.py @@ -128,7 +128,7 @@ class MUFS: k = len(features) for pair in list(combinations(features, 2)): rff += self._compute_su_features(*pair) - return rcf / sqrt(k + (k ** 2 - k) * rff) + return rcf / sqrt(k + (k**2 - k) * rff) def cfs(self, X, y): """Correlation-based Feature Selection