Skip to content
Snippets Groups Projects
Commit 63672d66 authored by dmt's avatar dmt
Browse files

Remove not needed parameter.

parent b06cabb9
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ class ZSigmaDeconstructor(Abstract):
"""
if self.time_constraint(relative):
overlapping = self.identify_overlapping_features(relative)
overlapping = self.identify_overlapping_features()
if self.column_constraint(overlapping):
meta_model = self.model_fusion(relative)
......@@ -115,15 +115,10 @@ class ZSigmaDeconstructor(Abstract):
relative_m_dash_time
)
def identify_overlapping_features(self, relative):
"""Build learnblock on basis the feature intersection of two other
def identify_overlapping_features(self):
"""Build learnblock on basis of the feature intersection of two other
learnblocks.
Args:
relative (PragmaticMachineLearningModel): Relative of deconstrucing
model.
Returns:
PandasBlock:
Learnblock
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment