From 9cd50844e8ac1e67cb57a8864103253f7b56a238 Mon Sep 17 00:00:00 2001 From: baniasbaabe Date: Sun, 28 Apr 2024 19:10:28 +0200 Subject: [PATCH] Fix mrmr --- book/machinelearning/featureselection.ipynb | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/book/machinelearning/featureselection.ipynb b/book/machinelearning/featureselection.ipynb index fc75600..dfc70a1 100644 --- a/book/machinelearning/featureselection.ipynb +++ b/book/machinelearning/featureselection.ipynb @@ -247,20 +247,18 @@ ] }, { - "cell_type": "code", - "execution_count": null, + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ "Do you want to do Feature Selection automatically?\n", "\n", - "Try mrmr.\n", + "Try `mrmr`.\n", "\n", - "mrmr (minimum-Redundancy-Maximum-Relevance) is a minimal-optimal feature selection algorithm at scale.\n", + "`mrmr` (minimum-Redundancy-Maximum-Relevance) is a minimal-optimal feature selection algorithm at scale.\n", "\n", - "It means mrmr will find the smallest relevant subset of features your ML Model needs.\n", + "It means `mrmr` will find the smallest relevant subset of features your ML Model needs.\n", "\n", - "mrmr supports common tools like Pandas, Polars and Spark.\n", + "`mrmr` supports common tools like Pandas, Polars and Spark.\n", "\n", "See below how we want to select the best K features.\n", "\n",