From 18e9dbdc7f645f859af7e74b84b0ae332eb9ec0e Mon Sep 17 00:00:00 2001
From: Abdullah Shah <abdullahshah2018@gmail.com>
Date: Tue, 31 May 2022 17:23:17 -0400
Subject: [PATCH] made new commit on files to remove unnecessary comments and
 code

---
 examples/decision_tree/main.py | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/examples/decision_tree/main.py b/examples/decision_tree/main.py
index d7922e6..1b82988 100644
--- a/examples/decision_tree/main.py
+++ b/examples/decision_tree/main.py
@@ -18,13 +18,8 @@ data = SyntheticData(shuffle=False)
 
 config.X_train, config.X_test, config.y_train, config.y_test = data.generator()
 
-#instantiate model here.
-#finalModel = Models()
-
-
 testModel = decisionTreemodel(config.X_train, config.X_test, config.y_train, config.y_test, 9)
 
-#testModel1 = logisticRegressionModel(config.X_train, config.X_test, config.y_train, config.y_test, 9)
 
 #fit model using fit method on the model class
 
-- 
GitLab