|
Hi Reader, Today's tip is drawn directly from my upcoming course, Master Machine Learning with scikit-learn. You can read the tip below or watch it as a video! If you're interested in receiving more free lessons from the course (which won't be included in Tuesday Tips), you can join the waitlist by clicking here:
π Tip #43: Should you discretize continuous features for Machine Learning?Let's say that you're working on a supervised Machine Learning problem, and you're deciding how to encode the features in your training data. With a categorical feature, you might consider using one-hot encoding or ordinal encoding. But with a continuous numeric feature, you would normally pass that feature directly to your model. (Makes sense, right?) However, one alternative strategy that is sometimes used with continuous features is to "discretize" or "bin" them into categorical features before passing them to the model. First, I'll show you how to do this in scikit-learn. Then, I'll explain whether I think it's a good idea! π©βπ» How to discretize in scikit-learnIn scikit-learn, we can discretize using the KBinsDiscretizer class: When creating an instance of KBinsDiscretizer, you define the number of bins, the binning strategy, and the method used to encode the result: As an example, here's a numeric feature from the famous Titanic dataset: And here's the output when we use KBinsDiscretizer to transform that feature: Because we specified 3 bins, every sample has been assigned to bin 0 or 1 or 2. The smallest values were assigned to bin 0, the largest values were assigned to bin 2, and the values in between were assigned to bin 1. Thus, we've taken a continuous numeric feature and encoded it as an ordinal feature (meaning an ordered categorical feature), and this ordinal feature could be passed to the model in place of the numeric feature. π€ Is discretization a good idea?Now that you know how to discretize, the obvious follow-up question is: Should you discretize your continuous features? Theoretically, discretization can benefit linear models by helping them to learn non-linear trends. However, my general recommendation is to not use discretization, for three main reasons: (1) Discretization removes all nuance from the data, which makes it harder for a model to learn the actual trends that are present in the data. (2) Discretization reduces the variation in the data, which makes it easier to find trends that don't actually exist. (3) Any possible benefits of discretization are highly dependent on the parameters used with KBinsDiscretizer. Making those decisions by hand creates a risk of overfitting the training data, and making those decisions during a tuning process adds both complexity and processing time. As such, neither option is attractive to me! For all of those reasons, I don't recommend discretizing your continuous features unless you can demonstrate, through a proper model evaluation process, that it's providing a meaningful benefit to your model. π Further readingπ Discretization in the scikit-learn User Guide π Discretize Predictors as a Last Resort from Feature Engineering and Selection (section 6.2.2) π See you next Tuesday!Did you like this weekβs tip? Don't forget to join the waitlist for my new ML course and get more free lessons! - Kevin P.S. My hobby: Extrapolatingβ Did someone AWESOME forward you this email? Sign up here to receive Data Science tips every week! |
Join 25,000+ intelligent readers and receive AI tips every Tuesday!
Hi Reader, Until 8 PM ET tonight, you can get the All-Access Pass for $99: Here's everything you need to know: Access all existing courses for one year ($700+ value) Includes new courses launched during your subscription Includes e-book version of Master Machine Learning (coming soon) Additional discounts available Lock in this price forever 30-day refund policy Get the Pass for $99 Questions? Please let me know! - Kevin
Hi Reader, I wanted to share with you three limited-time resources for improving your Python skills... 1οΈβ£ Algorithm Mastery Bootcamp π₯Ύ Are you looking for an intense, 12-day Python bootcamp? My friend Rodrigo GirΓ£o SerrΓ£o is running a new Algorithm Mastery Bootcamp, and it starts in just 5 days! In the bootcamp, you'll solve 24 real programming challenges and participate in daily live sessions to discuss and compare solutions. It's a great way to strengthen your problem-solving muscles πͺ I...
Hi Reader, Last week, I launched the All-Access Pass, which gives you access to ALL of Data School's courses for one year. Through Black Friday, you can buy the pass for $99, after which the price will increase. Here are the included courses: Build an AI chatbot with Python ($9) Create your first AI app in 60 minutes using LangChain & LangGraph! β‘ Build AI agents with Python ($99) Develop the skills to create AI apps that can think and act independently π€ Conda Essentials for Data Scientists...