
Debugging Machine Learning Models with Python
By :

The examples we have provided so far in this book have focused on tabular data either in machine learning or in deep learning modeling, as one category of machine learning modeling. However, machine learning, and especially deep learning, has been successful in tackling problems that deal with non-tabular, or unstructured, texts, images, and graphs. First, we’ll introduce different problems that involve such data types in this section; then, we’ll review deep learning techniques that can help you build reliable models for them.
Structured data, which is also referred to as tabular data, is data that can be organized into spreadsheets and structured databases. As we have used this data type in this book, we usually have different features and even output in the columns of a table, matrix, or DataFrame. The rows of a DataFrame represent different data points in the dataset. However, we have other types of...