From 1b1ed18ab6c9add78eb07140b708582ab0ccf2f2 Mon Sep 17 00:00:00 2001 From: "Olivaw[bot]" Date: Mon, 6 Jan 2025 00:15:24 +0000 Subject: [PATCH] Change some values --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index e777ba5..546009a 100644 --- a/train.py +++ b/train.py @@ -10,7 +10,7 @@ y_test = np.genfromtxt("data/test_labels.csv") # Fit a model -depth = 5 +depth = 8 clf = RandomForestClassifier(max_depth=depth) clf.fit(X_train, y_train)