From 8fae2058a1c4ad2b765d6057593c0e78a5fe71fb Mon Sep 17 00:00:00 2001 From: brad-gh <32170926+brad-gh@users.noreply.github.com> Date: Mon, 2 May 2022 23:08:17 -0400 Subject: [PATCH] fix: formulation --- piscine/week02/day05/ex03/audit/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/piscine/week02/day05/ex03/audit/README.md b/piscine/week02/day05/ex03/audit/README.md index 2d5106c..917b38d 100644 --- a/piscine/week02/day05/ex03/audit/README.md +++ b/piscine/week02/day05/ex03/audit/README.md @@ -18,7 +18,7 @@ gridsearch.fit(X_train, y_train) The answers that uses another list of parameters are accepted too ! -##### The question 2 is validated if you called these attributes: +##### The question 2 is validated if these attributes were used: ```python print(gridsearch.best_score_) @@ -30,6 +30,6 @@ The best score is -0.29028202683007526, that means that the MSE is ~0.29, it doe The best models params are `{'max_depth': 10, 'n_estimators': 75}`. -As you may must have a different parameters list than this one, you should have different results. +Note that if the parameters used are different, the results should be different. -##### The question 3 is validated if you used the fitted estimator to compute the score on the test set: `gridsearch.score(X_test, y_test)`. The MSE score is ~0.27. The score I got on the test set is close to the score I got on the validation sets. It means the models is not over fitted. \ No newline at end of file +##### The question 3 is validated if the fitted estimator was used to compute the score on the test set: `gridsearch.score(X_test, y_test)`. The MSE score is ~0.27. The score I got on the test set is close to the score I got on the validation sets. It means the models is not over fitted.