From fc2c7792665e967b640eb6036929d326e6a8fb06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=C3=B4nio=20C=C3=A2ndido?= Date: Thu, 6 Dec 2018 14:47:01 -0200 Subject: [PATCH] Bugfix on cmvfts --- pyFTS/models/multivariate/cmvfts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyFTS/models/multivariate/cmvfts.py b/pyFTS/models/multivariate/cmvfts.py index 715033f..de03bc3 100644 --- a/pyFTS/models/multivariate/cmvfts.py +++ b/pyFTS/models/multivariate/cmvfts.py @@ -42,7 +42,7 @@ class ClusteredMVFTS(mvfts.MVFTS): ndata = [] for index, row in data.iterrows(): data_point = self.format_data(row) - ndata.append(common.fuzzyfy_instance_clustered(data_point, self.cluster, self.alpha_cut)) + ndata.append(common.fuzzyfy_instance_clustered(data_point, self.cluster, alpha_cut=self.alpha_cut)) return ndata