From 819c4dd5b77a7dc290e5de2ece49702ee8090e93 Mon Sep 17 00:00:00 2001 From: Amdjed Bensalah <44640851+amdjedbens@users.noreply.github.com> Date: Tue, 12 Mar 2024 21:00:45 +0100 Subject: [PATCH] Fixed a typo in model saving directory. (#115) --- 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",