From 32b25760974c94559b7ff304e3d33c58c6ae7e16 Mon Sep 17 00:00:00 2001 From: Omur Ugur Date: Sat, 13 Sep 2025 18:06:47 +0300 Subject: [PATCH] some typo trimming --- tutorials/polynomial_regression.ipynb | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tutorials/polynomial_regression.ipynb b/tutorials/polynomial_regression.ipynb index 6bb562a..1d91d46 100644 --- a/tutorials/polynomial_regression.ipynb +++ b/tutorials/polynomial_regression.ipynb @@ -90,7 +90,6 @@ "metadata": {}, "outputs": [], "source": [ - "import numpy as np\n", "from numpy.polynomial import Polynomial" ] }, @@ -144,6 +143,7 @@ "metadata": {}, "outputs": [], "source": [ + "import numpy as np\n", "np.random.seed(42)\n", "\n", "n_samples = 20\n", @@ -157,7 +157,7 @@ "id": "cdafa99c", "metadata": {}, "source": [ - "Let's see if the data produced is looking good (as we might possible guess)." + "Let's see if the data produced is looking good (as we might possibly guess)." ] }, { @@ -283,14 +283,6 @@ "However, in order to decide the dimensions of our design matrix, we need the *degree* of the polynomial that is going to be used in the model." ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "f41f4263", - "metadata": {}, - "outputs": [], - "source": [] - }, { "cell_type": "markdown", "id": "b9ecaec8",