From 4790acea51a33c885eb160a05998e4afdd62b2d8 Mon Sep 17 00:00:00 2001 From: "Olivaw[bot]" Date: Mon, 20 Jan 2025 00:14:33 +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)