Chapter 2: End-to-End Machine Learning Project
dev.to·2d·
Discuss: DEV
📉Model Quantization
Preview
Report Post

Chapter 2

In this chapter, we create a very simple project where we predict house prices given the features such as Total Number of Bedrooms, age of the house, size of the house, and much much more.

Pipeline

A pipeline is just a set of data processing components. Pipelines are used very commonly as there are lot of data transformations to apply.

Classification or Regression?

First, we need to decide whether this problem is Regression or Classification. In Classification, your model chooses from a given set of categories, like Cat or Dog? Genre of a Movie. In classification, the options are limited, the model just has to predict the probability of a specific thing being in a class, so it has to choose. In Regression, your model has to predict a continuous value, meaning …

Similar Posts

Loading similar posts...