summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2021-06-25 11:03:06 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2021-06-25 11:03:06 +0200
commit21e8884c62187587a8cf8ae277dbdb5297de4645 (patch)
tree8a3c1cb362573c912dcac7f0b2670d70c25cde1f /lib
parentcfc020343c4792828462ece5b398153a306ac033 (diff)
model: remove debug statement
Diffstat (limited to 'lib')
-rw-r--r--lib/model.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/model.py b/lib/model.py
index 293d2a9..cafbf2c 100644
--- a/lib/model.py
+++ b/lib/model.py
@@ -409,9 +409,6 @@ class AnalyticModel:
child_parameters = list(map(lambda i: parameters[i], indexes))
child_data = list(map(lambda i: data[i], indexes))
if len(child_data):
- print(
- f"Level {level} split on {symbol} == {value} has {len(child_data)} children"
- )
child[value] = self._build_dtree(
child_parameters, child_data, threshold, level + 1
)