From 1d9d5dd0e202c0265383b0b921b0363209f4f93e Mon Sep 17 00:00:00 2001 From: ArturoAmorQ Date: Thu, 31 Aug 2023 15:57:10 +0200 Subject: [PATCH] Rename M4.04 into M4.03 --- .../{linear_models_ex_04.py => linear_models_ex_03.py} | 4 ++-- .../{linear_models_sol_04.py => linear_models_sol_03.py} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename python_scripts/{linear_models_ex_04.py => linear_models_ex_03.py} (97%) rename python_scripts/{linear_models_sol_04.py => linear_models_sol_03.py} (99%) diff --git a/python_scripts/linear_models_ex_04.py b/python_scripts/linear_models_ex_03.py similarity index 97% rename from python_scripts/linear_models_ex_04.py rename to python_scripts/linear_models_ex_03.py index ef365713a..9c311e817 100644 --- a/python_scripts/linear_models_ex_04.py +++ b/python_scripts/linear_models_ex_03.py @@ -12,7 +12,7 @@ # --- # %% [markdown] -# # 📝 Exercise M4.04 +# # 📝 Exercise M4.03 # # The parameter `penalty` can control the **type** of regularization to use, # whereas the regularization **strength** is set using the parameter `C`. @@ -21,7 +21,7 @@ # `penalty="l2"` regularization (which happens to be the default in # scikit-learn) to find by yourself the effect of the parameter `C`. # -# We will start by loading the dataset. +# We start by loading the dataset. # %% [markdown] # ```{note} diff --git a/python_scripts/linear_models_sol_04.py b/python_scripts/linear_models_sol_03.py similarity index 99% rename from python_scripts/linear_models_sol_04.py rename to python_scripts/linear_models_sol_03.py index 358abce52..d789c8522 100644 --- a/python_scripts/linear_models_sol_04.py +++ b/python_scripts/linear_models_sol_03.py @@ -6,7 +6,7 @@ # --- # %% [markdown] -# # 📃 Solution for Exercise M4.04 +# # 📃 Solution for Exercise M4.03 # # The parameter `penalty` can control the **type** of regularization to use, # whereas the regularization **strength** is set using the parameter `C`.