diff --git a/train.py b/train.py index de5ef26..f394fd6 100644 --- a/train.py +++ b/train.py @@ -9,7 +9,7 @@ X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=18) # Fit a model -depth = 2 +depth = 5 clf = RandomForestClassifier(max_depth=depth) clf.fit(X_train, y_train)