From 3e7467dc9517d08623656b506e41027f4b201695 Mon Sep 17 00:00:00 2001 From: Amdjed Bensalah <44640851+amdjedbens@users.noreply.github.com> Date: Sun, 10 Mar 2024 01:30:55 +0100 Subject: [PATCH] Fixed a typo in model saving directory. --- notebooks/xgboost_diabetes_classification.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/xgboost_diabetes_classification.ipynb b/notebooks/xgboost_diabetes_classification.ipynb index 4638d19..abeea89 100644 --- a/notebooks/xgboost_diabetes_classification.ipynb +++ b/notebooks/xgboost_diabetes_classification.ipynb @@ -70,7 +70,7 @@ "metadata": {}, "outputs": [], "source": [ - "model_directory = os.path.join(os.getcwd(), \"XGboostModels\")\n", + "model_directory = os.path.join(os.getcwd(), \"XGBoostModels\")\n", "if not os.path.isdir(model_directory):\n", " os.mkdir(model_directory)\n", "\n",