Hi Reader,
You might have noticed that I start each Tuesday Tip with a link of the week and end with a humorous/interesting P.S.
If you ever want to nominate a link for either category, please feel free to share it with me! 💌
Driverless cars may already be safer than human drivers
This is not only a fascinating read, but also an excellent case study in the challenges of real-world data gathering and data analysis!
Recently, a reader asked me how to get “un-stuck” with his Data Science project, given that he’s facing the following challenges:
Great questions!
What he needs is “feature selection”, which is the process of removing uninformative features from your model. These are features that are NOT helping your model to make better predictions. In other words, uninformative features are adding “noise” to your model, rather than “signal”. 📡
Here’s how your model can benefit from feature selection:
There are many valid methods for feature selection, including human intuition, domain knowledge, and data exploration. But for the moment, I want to focus on automated feature selection that can be included in a scikit-learn Pipeline. ⚡
Within the category of automated feature selection, there are subcategories such as intrinsic methods (like L1 regularization) and wrapper methods (like recursive feature elimination), though the most flexible and computationally efficient methods are in the subcategory of filter methods (like SelectPercentile).
As you might guess, automated feature selection is a vast and complex topic! However, I’ll give you a quick introduction to one of these categories so that you can get started today! 🚀
A filter method starts by scoring every single feature to quantify its potential relationship with the target column. Then, the features are ranked by their scores, and only the top scoring features are passed to the model. 🏅
Thus, they’re called filter methods because they filter out what they believe to be the least informative features and then pass on the more informative features to the model.
Filter methods vary in terms of the processes they use to score the features. For example:
In each case, you have to select how many features are passed to the prediction model by setting a percentile (for SelectPercentile) or a scoring threshold (for SelectFromModel). And of course, these parameters should be tuned using a grid search! 🔎
Despite the conceptual complexity, it’s surprisingly simple to add automated feature selection to a scikit-learn Pipeline. I’ll show you how:
🔗 Here’s my 2-minute video that walks you through it (YouTube)
🔗 Here’s my code from the video (Jupyter notebook)
Feature selection is a huge topic, but I cover it in detail in Chapter 13 of my upcoming course:
🔗 Master Machine Learning with scikit-learn (Data School course)
I’ve been working on this course for YEARS, and I’m planning to release the first 16 chapters by the end of 2023! Stay tuned for the launch announcement... 👂
In the meantime, my top recommendation for learning about feature selection is this comprehensive book:
🔗 Feature Engineering and Selection (free online book)
If you enjoyed this week’s tip, please forward it to a friend! Takes only a few seconds, and it really helps me grow the newsletter! 🙌
See you next Tuesday!
- Kevin
P.S. Frequency (calculations)
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, Last week, I encouraged you to experiment with different LLMs, since there’s no one model that is superior across all use cases. Specifically, I suggested you try using Chatbot Arena, which allows you to chat with multiple models at once. It’s completely free, but has two significant disadvantages: Your chats are not private and may be used for research. It lacks the feature-rich interface provided by other LLMs. Today, I want to offer you a better method for experimenting with...
Hi Reader, Over the past 50 tips, I’ve touched on many different topics: Python, Jupyter, pandas, ML, data visualization, and so on. Going forward, I’m planning to focus mostly on Artificial Intelligence. I’m announcing this so you know what to expect, and I know what to deliver! 💌 I’ll also try to make the tips shorter, so that they're easier to digest on-the-go. Finally, I plan to include an “action item” each week, so that you can practice what you’re learning. I hope you like these...
Hi Reader, Next week, I’ll be offering a Black Friday sale on ALL of my courses. I’ll send you the details this Thursday! 🚨 👉 Tip #50: What is a "method" in Python? In Python, a method is a function that can be used on an object because of the object's type. For example, if you create a Python list, the "append" method can be used on that list. All lists have an "append" method simply because they are lists: If you create a Python string, the "upper" method can be used on that string simply...