diff --git a/package/example.ipynb b/package/example.ipynb index 5984097..ab31dd8 100644 --- a/package/example.ipynb +++ b/package/example.ipynb @@ -4,8 +4,6 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Colab\n", - "\n", "\n", " \"Open\n", "\n", @@ -115,12 +113,12 @@ "train_size = len(X_cont['train'])\n", "\n", "# NOTE\n", - "# Overall, the choice between preprocessing strategies depends on a task and a model.\n", + "# The choice between preprocessing strategies depends on a task and a model.\n", "\n", - "# A simple preprocessing strategy.\n", + "# (A) Simple preprocessing strategy.\n", "# preprocessing = sklearn.preprocessing.StandardScaler().fit(X_cont['train'])\n", "\n", - "# A fancy preprocessing strategy.\n", + "# (B) Fancy preprocessing strategy.\n", "X_std = X_cont['train'].std(axis=0)\n", "noise_hint = 1e-3\n", "noise_std = np.minimum(noise_hint, noise_hint * X_std)\n",