summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/parameters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/parameters.py b/lib/parameters.py
index 7f48dcc..341b463 100644
--- a/lib/parameters.py
+++ b/lib/parameters.py
@@ -657,7 +657,7 @@ class ModelAttribute:
ret["decision tree/max depth"] = self.model_function.get_max_depth()
elif type(self.model_function) in (df.StaticFunction, df.AnalyticFunction):
ret["decision tree/nodes"] = 1
- ret["decision tree/max depth"] = 1
+ ret["decision tree/max depth"] = 0
if type(self.model_function) in (
df.SplitFunction,