#!/usr/bin/env python # coding: utf-8 # # Feature Engineering # The previous chapters outlined the fundamental ideas of machine learning, but all of the examples assumed that you have numerical data in a tidy, `[n_samples, n_features]` format. # In the real world, data rarely comes in such a form. # With this in mind, one of the more important steps in using machine learning in practice is *feature engineering*: that is, taking whatever information you have about your problem and turning it into numbers that you can use to build your feature matrix. # # In this chapter, we will cover a few common examples of feature engineering tasks: we'll look at features for representing categorical data, text, and images. # Additionally, we will discuss derived features for increasing model complexity and imputation of missing data. # This process is commonly referred to as vectorization, as it involves converting arbitrary data into well-behaved vectors. # ## Categorical Features # # One common type of nonnumerical data is *categorical* data. # For example, imagine you are exploring some data on housing prices, and along with numerical features like "price" and "rooms," you also have "neighborhood" information. # For example, your data might look something like this: # In[1]: data = [ {'price': 850000, 'rooms': 4, 'neighborhood': 'Queen Anne'}, {'price': 700000, 'rooms': 3, 'neighborhood': 'Fremont'}, {'price': 650000, 'rooms': 3, 'neighborhood': 'Wallingford'}, {'price': 600000, 'rooms': 2, 'neighborhood': 'Fremont'} ] # You might be tempted to encode this data with a straightforward numerical mapping: # In[2]: {'Queen Anne': 1, 'Fremont': 2, 'Wallingford': 3}; # But it turns out that this is not generally a useful approach in Scikit-Learn. The package's models make the fundamental assumption that numerical features reflect algebraic quantities, so such a mapping would imply, for example, that *Queen Anne < Fremont < Wallingford*, or even that *Wallingford–Queen Anne = Fremont*, which (niche demographic jokes aside) does not make much sense. # # In this case, one proven technique is to use *one-hot encoding*, which effectively creates extra columns indicating the presence or absence of a category with a value of 1 or 0, respectively. # When your data takes the form of a list of dictionaries, Scikit-Learn's ``DictVectorizer`` will do this for you: # In[3]: from sklearn.feature_extraction import DictVectorizer vec = DictVectorizer(sparse=False, dtype=int) vec.fit_transform(data) # Notice that the `neighborhood` column has been expanded into three separate columns representing the three neighborhood labels, and that each row has a 1 in the column associated with its neighborhood. # With these categorical features thus encoded, you can proceed as normal with fitting a Scikit-Learn model. # # To see the meaning of each column, you can inspect the feature names: # In[4]: vec.get_feature_names_out() # There is one clear disadvantage of this approach: if your category has many possible values, this can *greatly* increase the size of your dataset. # However, because the encoded data contains mostly zeros, a sparse output can be a very efficient solution: # In[5]: vec = DictVectorizer(sparse=True, dtype=int) vec.fit_transform(data) # Nearly all of the Scikit-Learn estimators accept such sparse inputs when fitting and evaluating models. `sklearn.preprocessing.OneHotEncoder` and `sklearn.feature_extraction.FeatureHasher` are two additional tools that Scikit-Learn includes to support this type of encoding. # ## Text Features # # Another common need in feature engineering is to convert text to a set of representative numerical values. # For example, most automatic mining of social media data relies on some form of encoding the text as numbers. # One of the simplest methods of encoding this type of data is by *word counts*: you take each snippet of text, count the occurrences of each word within it, and put the results in a table. # # For example, consider the following set of three phrases: # In[6]: sample = ['problem of evil', 'evil queen', 'horizon problem'] # For a vectorization of this data based on word count, we could construct individual columns representing the words "problem," "of," "evil," and so on. # While doing this by hand would be possible for this simple example, the tedium can be avoided by using Scikit-Learn's `CountVectorizer`: # In[7]: from sklearn.feature_extraction.text import CountVectorizer vec = CountVectorizer() X = vec.fit_transform(sample) X # The result is a sparse matrix recording the number of times each word appears; it is easier to inspect if we convert this to a `DataFrame` with labeled columns: # In[8]: import pandas as pd pd.DataFrame(X.toarray(), columns=vec.get_feature_names_out()) # There are some issues with using a simple raw word count, however: it can lead to features that put too much weight on words that appear very frequently, and this can be suboptimal in some classification algorithms. # One approach to fix this is known as *term frequency–inverse document frequency* (*TF–IDF*), which weights the word counts by a measure of how often they appear in the documents. # The syntax for computing these features is similar to the previous example: # In[9]: from sklearn.feature_extraction.text import TfidfVectorizer vec = TfidfVectorizer() X = vec.fit_transform(sample) pd.DataFrame(X.toarray(), columns=vec.get_feature_names_out()) # For an example of using TF-IDF in a classification problem, see [In Depth: Naive Bayes Classification](05.05-Naive-Bayes.ipynb). # ## Image Features # # Another common need is to suitably encode images for machine learning analysis. # The simplest approach is what we used for the digits data in [Introducing Scikit-Learn](05.02-Introducing-Scikit-Learn.ipynb): simply using the pixel values themselves. # But depending on the application, such an approach may not be optimal. # # A comprehensive summary of feature extraction techniques for images is well beyond the scope of this chapter, but you can find excellent implementations of many of the standard approaches in the [Scikit-Image project](http://scikit-image.org). # For one example of using Scikit-Learn and Scikit-Image together, see [Feature Engineering: Working with Images](05.14-Image-Features.ipynb). # ## Derived Features # # Another useful type of feature is one that is mathematically derived from some input features. # We saw an example of this in [Hyperparameters and Model Validation](05.03-Hyperparameters-and-Model-Validation.ipynb) when we constructed *polynomial features* from our input data. # We saw that we could convert a linear regression into a polynomial regression not by changing the model, but by transforming the input! # # For example, this data clearly cannot be well described by a straight line (see Figure 40-1): # In[10]: get_ipython().run_line_magic('matplotlib', 'inline') import numpy as np import matplotlib.pyplot as plt x = np.array([1, 2, 3, 4, 5]) y = np.array([4, 2, 1, 3, 7]) plt.scatter(x, y); # We can still fit a line to the data using `LinearRegression` and get the optimal result, as shown in Figure 40-2: # In[11]: from sklearn.linear_model import LinearRegression X = x[:, np.newaxis] model = LinearRegression().fit(X, y) yfit = model.predict(X) plt.scatter(x, y) plt.plot(x, yfit); # But it's clear that we need a more sophisticated model to describe the relationship between $x$ and $y$. # # One approach to this is to transform the data, adding extra columns of features to drive more flexibility in the model. # For example, we can add polynomial features to the data this way: # In[12]: from sklearn.preprocessing import PolynomialFeatures poly = PolynomialFeatures(degree=3, include_bias=False) X2 = poly.fit_transform(X) print(X2) # The derived feature matrix has one column representing $x$, a second column representing $x^2$, and a third column representing $x^3$. # Computing a linear regression on this expanded input gives a much closer fit to our data, as you can see in Figure 40-3: # In[13]: model = LinearRegression().fit(X2, y) yfit = model.predict(X2) plt.scatter(x, y) plt.plot(x, yfit); # This idea of improving a model not by changing the model, but by transforming the inputs, is fundamental to many of the more powerful machine learning methods. # We'll explore this idea further in [In Depth: Linear Regression](05.06-Linear-Regression.ipynb) in the context of *basis function regression*. # More generally, this is one motivational path to the powerful set of techniques known as *kernel methods*, which we will explore in [In-Depth: Support Vector Machines](05.07-Support-Vector-Machines.ipynb). # ## Imputation of Missing Data # # Another common need in feature engineering is handling of missing data. # We discussed the handling of missing data in `DataFrame` objects in [Handling Missing Data](03.04-Missing-Values.ipynb), and saw that `NaN` is often is used to mark missing values. # For example, we might have a dataset that looks like this: # In[14]: from numpy import nan X = np.array([[ nan, 0, 3 ], [ 3, 7, 9 ], [ 3, 5, 2 ], [ 4, nan, 6 ], [ 8, 8, 1 ]]) y = np.array([14, 16, -1, 8, -5]) # When applying a typical machine learning model to such data, we will need to first replace the missing values with some appropriate fill value. # This is known as *imputation* of missing values, and strategies range from simple (e.g., replacing missing values with the mean of the column) to sophisticated (e.g., using matrix completion or a robust model to handle such data). # # The sophisticated approaches tend to be very application-specific, and we won't dive into them here. # For a baseline imputation approach using the mean, median, or most frequent value, Scikit-Learn provides the `SimpleImputer` class: # In[15]: from sklearn.impute import SimpleImputer imp = SimpleImputer(strategy='mean') X2 = imp.fit_transform(X) X2 # We see that in the resulting data, the two missing values have been replaced with the mean of the remaining values in the column. This imputed data can then be fed directly into, for example, a `LinearRegression` estimator: # In[16]: model = LinearRegression().fit(X2, y) model.predict(X2) # ## Feature Pipelines # # With any of the preceding examples, it can quickly become tedious to do the transformations by hand, especially if you wish to string together multiple steps. # For example, we might want a processing pipeline that looks something like this: # # 1. Impute missing values using the mean. # 2. Transform features to quadratic. # 3. Fit a linear regression model. # # To streamline this type of processing pipeline, Scikit-Learn provides a ``Pipeline`` object, which can be used as follows: # In[17]: from sklearn.pipeline import make_pipeline model = make_pipeline(SimpleImputer(strategy='mean'), PolynomialFeatures(degree=2), LinearRegression()) # This pipeline looks and acts like a standard Scikit-Learn object, and will apply all the specified steps to any input data: # In[18]: model.fit(X, y) # X with missing values, from above print(y) print(model.predict(X)) # All the steps of the model are applied automatically. # Notice that for simplicity, in this demonstration we've applied the model to the data it was trained on; this is why it was able to perfectly predict the result (refer back to [Hyperparameters and Model Validation](05.03-Hyperparameters-and-Model-Validation.ipynb) for further discussion of this). # # For some examples of Scikit-Learn pipelines in action, see the following chapter on naive Bayes classification, as well as [In Depth: Linear Regression](05.06-Linear-Regression.ipynb) and [In-Depth: Support Vector Machines](05.07-Support-Vector-Machines.ipynb).