From d3b1f5c105ef7d6e787081632050ceec827587a0 Mon Sep 17 00:00:00 2001 From: sangseconds <82400654+sangseconds@users.noreply.github.com> Date: Wed, 22 Nov 2023 20:47:38 +0700 Subject: [PATCH 1/3] Update train.py --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 25a64304f..92678f346 100644 --- a/train.py +++ b/train.py @@ -23,7 +23,7 @@ ################################# # Fit a model on the train section -regr = RandomForestRegressor(max_depth=2, random_state=seed) +regr = RandomForestRegressor(max_depth=5, random_state=seed) regr.fit(X_train, y_train) # Report training set score From 8570c19acd56217343c354499d624e23840353f4 Mon Sep 17 00:00:00 2001 From: sangseconds <82400654+sangseconds@users.noreply.github.com> Date: Wed, 22 Nov 2023 20:57:52 +0700 Subject: [PATCH 2/3] Update train.py --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 92678f346..43b3a7873 100644 --- a/train.py +++ b/train.py @@ -23,7 +23,7 @@ ################################# # Fit a model on the train section -regr = RandomForestRegressor(max_depth=5, random_state=seed) +regr = RandomForestRegressor(max_depth=40, random_state=seed) regr.fit(X_train, y_train) # Report training set score From d614d683c89e0b48477443d5a3182bfc081c0a90 Mon Sep 17 00:00:00 2001 From: sangseconds <82400654+sangseconds@users.noreply.github.com> Date: Wed, 22 Nov 2023 20:58:21 +0700 Subject: [PATCH 3/3] Update train.py --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index 43b3a7873..92678f346 100644 --- a/train.py +++ b/train.py @@ -23,7 +23,7 @@ ################################# # Fit a model on the train section -regr = RandomForestRegressor(max_depth=40, random_state=seed) +regr = RandomForestRegressor(max_depth=5, random_state=seed) regr.fit(X_train, y_train) # Report training set score