From 16938a613446b9663c1098e3df335c4ffb7e878e Mon Sep 17 00:00:00 2001 From: Peter Steinbach Date: Fri, 6 Dec 2024 14:20:42 +0100 Subject: [PATCH] remove dublicate word (#783) --- python_scripts/parameter_tuning_grid_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_scripts/parameter_tuning_grid_search.py b/python_scripts/parameter_tuning_grid_search.py index 39de4251d..ec60d23ed 100644 --- a/python_scripts/parameter_tuning_grid_search.py +++ b/python_scripts/parameter_tuning_grid_search.py @@ -148,7 +148,7 @@ # cross-validation by providing `model_grid_search` as a model to the # `cross_validate` function. # -# Here, we used a single train-test split to to evaluate `model_grid_search`. In +# Here, we used a single train-test split to evaluate `model_grid_search`. In # a future notebook will go into more detail about nested cross-validation, when # you use cross-validation both for hyperparameter tuning and model evaluation. # ```