summaryrefslogtreecommitdiff
path: root/lib/model.py
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-02-21 12:40:57 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-02-21 12:40:57 +0100
commitb55023fda36ec320be4f7cd41ec83a9914a5d165 (patch)
tree9b84d3810135e345ade019ece6f5a13db626459c /lib/model.py
parentd5950d6f31de5403ed61124d799cd0fafe491b06 (diff)
build_dtree: there is no need to explicitly pass param_values and data
Diffstat (limited to 'lib/model.py')
-rw-r--r--lib/model.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/model.py b/lib/model.py
index 6718090..715ccb1 100644
--- a/lib/model.py
+++ b/lib/model.py
@@ -327,8 +327,6 @@ class AnalyticModel:
threshold = 0
logger.debug(f"build_dtree({name}, {attr}, threshold={threshold})")
self.attr_by_name[name][attr].build_dtree(
- self.by_name[name]["param"],
- self.by_name[name][attr],
threshold=threshold,
)
else:
@@ -374,8 +372,6 @@ class AnalyticModel:
f"build_dtree({name}, {attr}, threshold={threshold})"
)
self.attr_by_name[name][attr].build_dtree(
- self.by_name[name]["param"],
- self.by_name[name][attr],
threshold=threshold,
)
else: